@charset "utf-8";
/* Layout + component styling (colors come from theme CSS variables) */

*, *::before, *::after {
  box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');



:root{
--bh-primary:#06A274;
--bh-dark:#0F172A;
--bh-muted:#64748b;
--bh-border:#e2e8f0;
--bh-bg:#f8fafc;

--bh-section-padding:50px;
--bh-section-padding-mobile:30px;
	
 --bh-dd-bg: #ffffff;
  --bh-dd-text: #1f2937;
  --bh-dd-sub: #6b7280;
  --bh-dd-border: rgba(15, 23, 42, 0.14);
  --bh-dd-hover-bg: rgba(6, 162, 116, 0.12);
  --bh-dd-hover-text: #0f172a;
  --bh-dd-dot: rgba(31, 41, 55, 0.25);
  --green: #06A274;
  --green-light: #07B882;
  --navy: #0F172A;
  --text: #1E293B;
  --faint: rgba(30, 41, 59, 0.35);
	
   --bh-text: #0F172A;
  --bh-text1: #fffff;
  --bh-nav-bg: #ffffff;
  --bbh-final-cta:#3B82F6;
  --bh-border: rgba(15, 23, 42, 0.12);
}

/* Global */
body{
 font-family: "Inter", sans-serif !important;
/*font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;*/
color:var(--bh-dark);
}

/* Section spacing */
.section{
padding:var(--bh-section-padding) 0;
background:var(--bh-bg);
}

.section-white{
padding:var(--bh-section-padding) 0;
background:#fff;
}

/* Mobile spacing fix */
@media(max-width:768px){

.section,
.section-white{
padding:50px 0px;
}

.hero{
padding:60px 0;
}
	

	
h1{
font-size:28px !important;
line-height:1.3; 
	
}

h2{
font-size:22px;
}

.card{
margin-bottom:10px;
}

}

/* Buttons */
button.btn.btn-green{
background:var(--bh-primary);
color:#fff;
font-weight:600;
}

button.btn.btn-green:hover{
background:#058a63;
color:#fff;
}

/* Hero */
.hero{
padding:50px 0;
border-bottom:1px solid var(--bh-border);
}

.eyebrow{
background:rgba(6,162,116,0.1);
color:var(--bh-primary);
font-size:11px;
padding:5px 12px;
border-radius:20px;
border:1px solid rgba(6,162,116,0.25);
display:inline-block;
}

.navbar-nav .nav-link{
padding-left:20px;
padding-right:20px;
font-weight:500;
}



/* Navbar */
.bh-nav {
  background: var(--bh-nav-bg);
  border-bottom: 1px solid var(--bh-border);
  min-height: 56px;
}
.bh-nav .nav-link {
  color: var(--bh-muted);
  font-size: 13px;
  font-weight: 600;
   padding-bottom: 2px;
  border-bottom: 2px solid rgba(255, 255, 255, 0);
}
.bh-nav .nav-link:hover {
  color: var(--bh-text) !important;
  border-bottom: 2px solid var(--bh-primary);
  padding-bottom: 2px;
  
}
.bh-nav-link-active {
  color: var(--bh-text) !important;
  border-bottom: 2px solid var(--bh-primary) !important;
  padding-bottom: 2px;
}
.bh-nav-caret {
  font-size: 11px;
  opacity: 0.85;
}
.botborder{ border-bottom: 1px solid var(--bh-footer-border);}
span.bh-logo-pill img {
    width: 100px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.logo-mark { width: 30px;
    height: 30px;
    background: var(--green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
	color: #fff;}
.logo-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.2px;
}.logo-by {
    font-size: 10px;
    color: var(--faint);
    margin-left: 2px;
    margin-top: 2px;
}
/* For Small Business anddrop down menu */
 .bh-smb-dropdown {position: relative;}
 .bh-smb-link {position: relative; display: inline-flex;align-items: center; gap: 0.3rem; }
 .bh-nav .bh-smb-link:hover, .bh-nav .bh-smb-link-active { border-bottom: 2px solid #06A274; color: #000;}
 .dd-dot-green { width: 7px; height: 7px; border-radius: 50%; background: var(--bh-dd-dot); flex-shrink: 0; margin-top: 4px; }
 .dd-dot-muted { width: 7px; height: 7px; border-radius: 50%; background: var(--bh-dd-dot); flex-shrink: 0; margin-top: 4px; }
 .dd-label { font-size: 13px; font-weight: 500; color: var(--bh-dd-text); display: block; margin-bottom: 2px; }
 .dd-label-green { color: #34D399; }
 .dd-sub { font-size: 11px; color: var(--bh-dd-sub); display: block; }
    
 .bh-nav .dropdown-item { color: var(--bh-dd-text); padding: 0.45rem 1rem;}
 .bh-nav .dropdown-item:hover,
 .bh-nav .dropdown-item:focus { background: var(--bh-dd-hover-bg); color: var(--bh-dd-hover-text);}
 .bh-smb-dropdown .dropdown-item:hover .dd-dot-green{width: 7px; height: 7px; border-radius: 50%; background: #06A274; flex-shrink: 0; margin-top: 4px;}

/* Nav dropdowns: desktop = hover/focus-within; mobile = Bootstrap toggle on caret only */
.bh-nav-dropdown-split {
  gap: 0;
}
.bh-nav .bh-nav-dropdown-link {
  border-bottom: 2px solid rgba(255, 255, 255, 0);
}
.bh-nav .bh-nav-dropdown-chevron {
  color: var(--bh-muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  padding: 0.3rem 0.35rem;
  line-height: 1.5;
  box-shadow: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0);
}
.bh-nav .bh-nav-dropdown-chevron::after {
  margin-inline-start: 0.15rem;
  vertical-align: 0.15em;
}
.bh-nav .bh-nav-dropdown-toggle.bh-nav-dropdown-chevron:hover,
.bh-nav .bh-nav-dropdown-toggle.bh-nav-dropdown-chevron:focus-visible {
  color: var(--bh-text);
}
.bh-nav .nav-item.dropdown:hover > .bh-nav-dropdown-split .bh-nav-dropdown-chevron,
.bh-nav .nav-item.dropdown:focus-within > .bh-nav-dropdown-split .bh-nav-dropdown-chevron {
  color: var(--bh-text);
  border-bottom-color: var(--bh-primary);
}
.bh-nav .bh-smb-dropdown:hover > .bh-nav-dropdown-split .bh-nav-dropdown-chevron,
.bh-nav .bh-smb-dropdown:focus-within > .bh-nav-dropdown-split .bh-nav-dropdown-chevron {
  border-bottom-color: #06A274;
}
.bh-nav .bh-smb-dropdown .bh-nav-dropdown-chevron, .bh-nav .bh-smb-dropdown .bh-nav-dropdown-chevron:hover{
  border-bottom-color: #06A274;
}
.bh-nav .bh-smb-dropdown .bh-smb-link-active {
  border-bottom-color: #06A274;
}
.bh-nav-dropdown-caret-desktop {
  cursor: default;
  background: transparent;
  border: none;
}

  @media (min-width: 992px) {
  .bh-nav .dropdown-menu { display: block; min-width: 220px; background: var(--bh-dd-bg); border: 1px solid var(--bh-dd-border); border-radius: 0.5rem;
   padding: 0.45rem 0; margin-top: 0.35rem; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease; box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25); }
   .bh-nav .nav-item.dropdown:hover > .dropdown-menu,
   .bh-nav .nav-item.dropdown:focus-within > .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0);}
     }

  @media (max-width: 991.98px) { .bh-nav .dropdown-menu { position: static;float: none; width: 100%; margin: 0.35rem 0 0.6rem; background: var(--bh-dd-bg); border: 1px solid var(--bh-dd-border); border-radius: 0.5rem; padding: 0.35rem 0; text-align: left;}
  .bh-nav .dropdown-menu:not(.show) {
    display: none !important;
  }
  .bh-nav .dropdown-menu.show {
    display: block !important;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .bh-nav .dropdown-item {color: var(--bh-dd-text); }
  .bh-nav .dropdown-item:hover, .bh-nav .dropdown-item:focus { background: var(--bh-dd-hover-bg); color: var(--bh-dd-hover-text); }
  .bh-nav .bh-nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    flex-shrink: 0;
  }
   }
	.dropdown-item{font-size: 13px;}
	@media (min-width: 992px) {
  .navbar .dropdown-menu { display: block;  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s ease; }
  .navbar .dropdown:hover .dropdown-menu,
  .navbar .dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
	}	
	.navbar-toggler-icon{background-image: url("../image/menu.png") !important;}




@media(min-width:992px){
.navbar .navbar-collapse{
justify-content:center;
}

/*
.navbar .btn{
position:absolute;
right:0;
}
*/
}

/* Cards */
.card.card-custom{
border-top:3px solid var(--bh-primary);
}

/* Chat */
.chat-panel{
border:1px solid var(--bh-border);
border-radius:12px;
overflow:hidden;
}

.chat-header{
background:var(--bh-bg);
padding:10px 16px;
border-bottom:1px solid var(--bh-border);
}

.chat-q{
text-align:right;
}

.chat-bubble-q{
background:rgba(6,162,116,0.1);
border:1px solid rgba(6,162,116,0.2);
display:inline-block;
padding:8px 14px;
border-radius:10px 10px 2px 10px;
font-size:14px;
}

.chat-bubble-a{
background:#f8fafc;
border:1px solid var(--bh-border);
display:inline-block;
padding:8px 14px;
border-radius:10px 10px 10px 2px;
font-size:14px;
}
span.badge.badge-connected {background-color: #e6f4ea; color: #198754;}
span.badge.badge-coming{background-color: #fff3cd; color: #856404;}
a.btn.btn-green.px-4{background: var(--bh-primary); color: #fff; font-weight: 600;}
span.ticmark {
    font-size: 9px !important;
    font-weight: 200;
    color: #06080abf;
}
/* Footer */
.footer{
background:var(--bh-dark);
color:rgba(255,255,255,0.4);
padding:30px 0;
font-size:12px;
}
	 
.bh-subhead-green {
    font-size: 15px;
    line-height: 1.65;
    max-width: 740px;
    margin: 0 auto;
    color: var(--bh-muted);
}	
	 
.trust-signals{
font-size:14px;
color:var(--bh-muted);
margin-top:14px;
}

.trust-signals i{
color:var(--bh-primary);
margin-right:6px;
font-size:14px;
}

.trust-signals span{
margin:0 6px;
white-space:nowrap;
}

.trust-signals .divider{
opacity:.4;
}

.card h6 {
color: var(--bh-dark);
}
.acrod-bx .accordion-body {text-align: left;}	 
	 
.platform-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.2s;
  }

  .platform-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
  }

  .badge-connected {
    background-color: #e6f4ea;
    color: #198754;
  }

  .badge-coming {
    background-color: #fff3cd;
    color: #856404;
  }	 
	 
.gr-txt {
    color: #06a274;
    font-weight: 600;
    margin-bottom: 12px;
}	

.bh-section {
    padding: 64px 0;
}
.bh-section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--bh-link);
}

.bh-h2 {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.4px;
    margin-bottom: 24px;
    line-height: 1.25;
    color: var(--bh-text);
}
.bh-capability {
    padding: 36px 0;
    border-bottom: 1px solid var(--bh-footer-border);
}
.bh-mock-panel {
    background: 
color-mix(in srgb, var(--bh-text) 2%, transparent);
    border: 1px solid var(--bh-card-border);
    border-radius: 10px;
    padding: 16px;
}
.bh-mock-header {
    background: 
color-mix(in srgb, var(--bh-text) 4%, transparent);
    border-radius: 6px;
    padding: 8px 12px;
    margin-bottom: 12px;
}
.bh-mock-title {
    color: var(--bh-link);
    font-size: 10px;
    font-weight: 600;
}
.bh-mock-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
    padding-top: 8px;
}
.bh-card-title {
    color: var(--bh-text);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

  .pricing-container {
    max-width: 800px;
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
	 margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

  h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #111;
  }

  .subtitle {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
  }

  .plan {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.2s ease;
  }

  .plan:hover {
    border-color: #4f46e5;
    box-shadow: 0 5px 15px rgba(79,70,229,0.1);
  }

  .plan-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 8px;
  }

  .plan-desc {
    color: #555;
    line-height: 1.5;
  }

  .highlight {
    border: 2px solid #06a274;
    background: #edfbea;
  }

  .cta {
    display: inline-block;
    margin-top: 20px;
    background: #06a274;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s;
  }

  .cta:hover {
    background: #4338ca;
  }


@media(max-width:768px){

.trust-signals{
display:flex;
flex-direction:column;
gap:6px;
}

.trust-signals .divider{
display:none;
}

}	


@media (max-width: 768px) {
.hero {	padding: 30px 0;}
.section, .section-white{padding:30px 0px;}
.bh-section {padding: 30px 0;}

}
@media (max-width: 575.98px) {	
.hero {	padding: 30px 0;}
.section, .section-white{padding:30px 0px;}
.bh-section {padding: 30px 0;}
}

/* AskHippo How It Works page */
.ahw-hero .display-5 {
  max-width: 780px;
  margin: 0 auto;
}

.text-green {
  color: var(--bh-primary);
}

a.btn.btn-green,
.btn.btn-green {
  background: var(--bh-primary);
  color: #fff;
  font-weight: 600;
}

a.btn.btn-green:hover,
.btn.btn-green:hover {
  background: #058a63;
  color: #fff;
}

.ahw-video-wrap {
  background: var(--bh-bg);
}

.ahw-video-mock {
  background: var(--bh-dark);
  border-radius: 14px;
  aspect-ratio: 16/9;
  max-width: 860px;
  margin: 0 auto 18px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ahw-video-mock::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(6, 162, 116, 0.2), transparent 55%);
}

.ahw-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.ahw-play-icon {
  width: 0;
  height: 0;
  border-left: 18px solid rgba(255, 255, 255, 0.85);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}

.ahw-video-label {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  margin: 0;
  z-index: 1;
}

.ahw-steps {
  max-width: 900px;
}

.ahw-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  position: relative;
  margin-bottom: 26px;
}

.ahw-step::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 52px;
  bottom: -20px;
  width: 2px;
  background: rgba(6, 162, 116, 0.18);
}

.ahw-step-last::after {
  display: none;
}

.ahw-step-index {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bh-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 0 0 8px rgba(6, 162, 116, 0.12);
}

.ahw-step-content {
  padding-top: 3px;
}

.ahw-step-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--bh-primary);
  background: rgba(6, 162, 116, 0.1);
  border: 1px solid rgba(6, 162, 116, 0.22);
  border-radius: 99px;
  padding: 4px 10px;
  margin-bottom: 10px;
}

.ahw-step-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--bh-dark);
}

.ahw-step-detail {
  border: 1px solid var(--bh-border);
  border-radius: 10px;
  background: #fff;
  padding: 12px 14px;
  font-size: 13px;
  color: #475569;
  line-height: 1.65;
}

.ahw-platform-chip {
  background: #fff;
  border: 1px solid var(--bh-border);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  color: #334155;
}

@media (max-width: 768px) {
  .ahw-step {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    margin-bottom: 20px;
  }

  .ahw-step::after {
    left: 20px;
    top: 42px;
  }

  .ahw-step-index {
    width: 42px;
    height: 42px;
    font-size: 14px;
    box-shadow: 0 0 0 6px rgba(6, 162, 116, 0.12);
  }

  .ahw-step-title {
    font-size: 1rem;
  }

  .ahw-video-label {
    font-size: 11px;
  }
}

/* AskHippo Get Support page */
.gsup-hero .display-5 {
  max-width: 760px;
  margin: 0 auto;
}

.gsup-response-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.28);
  color: #047857;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
}

.gsup-response-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
}

.gsup-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(6, 162, 116, 0.28);
  background: rgba(6, 162, 116, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.gsup-topic-card {
  border: 1px solid var(--bh-border);
  border-radius: 12px;
  background: #fff;
  padding: 16px;
  height: 100%;
}

.gsup-topic-card h6 {
  font-size: 14px;
  margin-bottom: 6px;
}

.gsup-topic-card p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
}

.gsup-form-box {
  border: 1px solid var(--bh-border);
  border-radius: 14px;
  background: #fff;
  padding: 24px;
}

.gsup-info-card {
  border: 1px solid var(--bh-border);
  border-radius: 12px;
  background: #fff;
  padding: 18px;
}

.bh-mock-panel {
  background: color-mix(in srgb, var(--bh-text) 2%, transparent);
  border: 1px solid var(--bh-card-border);
  border-radius: 10px;
  padding: 16px;
}

.bh-mock-header {
  background: color-mix(in srgb, var(--bh-text) 4%, transparent);
  border-radius: 6px;
  padding: 8px 12px;
  margin-bottom: 12px;
}

.bh-mock-title {
  color: var(--bh-link);
  font-size: 10px;
  font-weight: 600;
}

.bh-mock-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  padding-top: 8px;
}

.bh-mock-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
}

.bh-mock-axis {
  height: 1px;
  background: var(--bh-footer-border);
  margin-top: 4px;
}

.chat-interface, .chat-interface {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.4) 0%, rgba(30, 64, 175, 0.4) 100%);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.8rem;
}
.hero-chat-interface {
    animation: fadeInUp 1s ease;
}
.chat-input {
    background: rgba(29, 78, 216, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.chat-input-card {
    background: rgba(1, 61, 128, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    animation: slideInRight 0.8s ease;
}

.chat-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-input-field {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 14px 20px;
    color: white;
    font-size: 15px;
    outline: none;
}

.chat-input-field::placeholder {
    color: rgba(255, 255, 255, 0.5);
}



.chat-send-button {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border: none;
    border-radius: 12px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-send-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.5);
}

/* Suggested Questions */
.suggested-questions {
    margin-bottom: 24px;
    animation: fadeInUp 1s ease 0.2s both;
}

.suggestion-chip {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
	font-size: 0.8rem;
}
.suggestion-btn {
    background: rgba(6, 162, 116, 0.1);
    color: var(--bh-primary);
    border: none;
    padding: 0.5rem 0.7rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    margin-bottom: 0.3rem;

}
.result-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    padding: 1.5rem;
}
.stat-card-mini {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 0.75rem;
    padding: 1rem;
}
.stat-card-mini {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 0.75rem;
    padding: 1rem;
}
.stat-card-mini {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 0.75rem;
    padding: 1rem;
}
	.rounded-circle {background: #06A274 !important;}
.weghtt{ font-weight: 700;}
