
.header-containerx {
    display: inline-block;
}
.header-contentx{
    display: inline;
}
.header-titlex {
display: inline; margin: 0; padding: 0; line-height: 1.4;
}


    .list-name {
        display: flex; align-items: center; gap: 8px;
    }
    .fa-check-circle {
        color:green; margin-right: 4px;
    }
    .verified {
        display: flex; align-items: center;
        color: #000000;
        background-color: #afe2cb
    }

/* ======= CSS ======= */
.unclaimed-badge {
  color: #d32f2f;
  cursor: help;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  position: relative;
  z-index: 999;
  user-select: none;
}

/* Warning circle */
.warning-circle {
  width: 15px;
  height: 15px;
  border: 2px solid #e60c0c;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 10px;
  line-height: 1;
  padding: 0;
}

/* Tooltip base */
.unclaimed-tooltip {
  position: absolute; /* positioned relative to document body */
  width: 380px;
  max-width: calc(100vw - 32px);
  background: #0b0723;
  border: 1px solid #211919;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  padding: 16px;
  font-size: 16px;
  line-height: 1.5;
  z-index: 10000;
  color: #ffffff;
  font-family: system-ui, sans-serif;

  /* hidden by default */
  opacity: 0;
  visibility: hidden;
  transform-origin: center;
  transition: opacity 150ms ease, transform 120ms ease;
  pointer-events: auto;
}

/* Visible */
.unclaimed-tooltip.visible {
  opacity: 1;
  visibility: visible;
}

/* Arrow (pseudo) */
.unclaimed-tooltip::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

/* Above: tooltip placed above trigger -> arrow points down */
.unclaimed-tooltip.position-above {
  transform: translateY(-6px);
}
.unclaimed-tooltip.position-above::after {
  border-top: 8px solid #1f1717; /* arrow color (slightly darker) */
  bottom: -16px; /* place arrow under tooltip */
  left: 50%;
  transform: translateX(-50%);
}

/* Below: tooltip placed below trigger -> arrow points up */
.unclaimed-tooltip.position-below {
  transform: translateY(6px);
}
.unclaimed-tooltip.position-below::after {
  border-bottom: 8px solid #1f1717;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
}

/* Text */
.unclaimed-tooltip p {
  margin: 0 0 10px 0;
  color: #fff;
}
.unclaimed-tooltip p:last-child { margin-bottom: 0; }
.unclaimed-tooltip .claim-link {
  color: #53acff;
  text-decoration: none;
  font-weight: 600;
}
.link {
  color: #53acff;
  text-decoration: none;
  font-size: 0.8em;
  font-weight: bold;
}
.unclaimed-tooltip .claim-link:hover, .link:hover { text-decoration: underline; }
.unclaimed-tooltip .benefits {
  color: #cdcdcd;
  font-size: 0.8em;
  font-weight: bold;
  margin-left: 6px;
}

/* small measuring helper to avoid flicker */
.unclaimed-tooltip.measuring {
  display: block !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Responsive */
@media (max-width: 480px) {
  .unclaimed-tooltip { width: calc(100vw - 32px); }
}

    /* Simple Premium Upsell Design */
.h2-container {
    text-align: left !important;
    margin-bottom: 30px;
}
.premium-upsell-simple {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
    text-align: center;
}

.upsell-header {
    margin-bottom: 20px;
}

.upsell-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B4513;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.upsell-badge i {
    font-size: 14px;
}

.upsell-header h3 {
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.upsell-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2d3748;
    font-size: 15px;
    font-weight: 500;
}

.feature i {
    color: #28a745;
    font-size: 16px;
}

.upsell-content {
    margin-bottom: 20px;
}

.upsell-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.upgrade-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #1f253d 0%, #110a35 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
}

.upgrade-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 37, 61, 0.25);
    color: white;
}

.upgrade-btn i {
    font-size: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .premium-upsell-simple {
        padding: 20px;
    }
    
    .upsell-header h3 {
        font-size: 18px;
    }
    
    .upsell-features {
        padding: 15px;
    }
    
    .feature {
        font-size: 14px;
    }
    
    .upgrade-btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* Company Overview Section */
.company-overview-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 20px rgba(167, 167, 167, 0.08);
    margin-bottom: 40px;
}

/* Section Headers */
.section-header {
    margin-bottom: 32px;
}

.section-title {
    color: #20047e !important;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

/* Company Description */
.company-description-card {
    margin-bottom: 20px;
}

.description-header {
    margin-bottom: 24px;
}

.description-title {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.company-bio {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.company-bio p {
    margin-bottom: 16px;
}

.company-link-wrapper {
    margin-top: 20px;
}

.company-external-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #006ec9;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 16px;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.company-external-link:hover {
    background: #006ec9;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 110, 201, 0.2);
}

/* Divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
    margin: 32px 0;
}

/* Products & Services */
.products-services-section {
    margin-top: 40px;
}

.services-container {
    margin-top: 24px;
}

/* Services Grid */
.services-grid,
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.service-item,
.area-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-item:hover,
.area-item:hover {
    background: #ffffff;
    border-color: #006ec9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-icon,
.area-icon {
    color: #006ec9;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.service-name,
.area-name {
    color: #2d3748;
    font-size: 16px;
    line-height: 1.5;
}

.service-link {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #006ec9;
}

/* Service Areas Section */
.service-areas-section {
    margin-top: 40px;
}

.areas-title {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

/* Empty States */
.empty-state {
    text-align: center;
    padding: 48px 24px;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px dashed #cbd5e0;
}

.empty-state i {
    font-size: 48px;
    color: #a0aec0;
    margin-bottom: 16px;
}

.empty-state p {
    color: #718096;
    font-size: 16px;
    margin: 0;
}

/* Premium Upsell */
.premium-upsell {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px;
    background: linear-gradient(135deg, #fff9db, #fff3bf);
    border-radius: 12px;
    /* border-left: 4px solid #f59e0b; */
}

.upsell-icon {
    color: #f59e0b;
    font-size: 32px;
}

.upsell-content {
    flex: 1;
}

.upsell-content p {
    color: #92400e;
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 500;
}

.upsell-button {
    display: inline-block;
    background: #f59e0b;
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.upsell-button:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.premium-note {
    padding: 20px;
    background: #fef2f2;
    border-radius: 8px;
    /* border-left: 4px solid #dc2626; */
}

.premium-note p {
    color: #dc6026;
    font-weight: 500;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-overview-section {
        padding: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .description-title {
        font-size: 20px;
    }
    
    .services-grid,
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-upsell {
        flex-direction: column;
        text-align: center;
    }
}    

    .faq-section {
    padding: 3rem 1rem;
    background: #f9fafc;
}

.faq-header {
    margin-bottom: 2.5rem;
    text-align: center;
    line-height: 2rem;
}

.faq-header h2 {
    color: #1a202c;
    font-size: 30px;
    font-weight: 700;
}

.faq-header a {
    color: #3b82f6;
    text-decoration: none;
}

.faq-header a:hover {
    text-decoration: underline;
}

.faq-list {
    /* max-width: 100%; */
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 2.1rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* cursor: pointer; */
    transition: background-color 0.2s;
    text-align: left;
}

.faq-question:hover {
    background-color: #ecf0f4;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    flex: 1;
}

.faq-toggle-icon {
    font-size: 1.25rem;
    font-weight: 300;
    color: #6b7280;
    transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: none;
    overflow: visible;
    margin-left: 20px;
    margin-bottom: 10px;
    border-left: 3px solid #d3d3d3;
}

.faq-answer p {
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
}

.leadership-info {
    padding: 1rem 0;
}

.btn-view-company-info {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
}

.btn-view-company-info:hover {
    background: #2563eb;
}

.btn-view-company-info .icon {
    font-size: 1.125rem;
}

.company-info-form {
    margin-top: 0.75rem;
}


.plans-tabbed-container {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Tabs Navigation */
.plans-tabs {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 12px 12px 0;
    gap: 4px;
}

.plan-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 8px;
    background: transparent;
    border: none;
    border-radius: 12px 12px 0 0;
    cursor: pointer;
    color: #666;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.plan-tab i {
    font-size: 18px;
    margin-bottom: 2px;
    transition: transform 0.3s ease;
}

.plan-tab.active {
    background: white;
    color: #1a1a1a;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
}

.plan-tab.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tab-color), var(--tab-color-light));
}

.plan-tab[data-tab="vip"] { --tab-color: #FFD700; --tab-color-light: #FFA500; }
.plan-tab[data-tab="premium"] { --tab-color: #667eea; --tab-color-light: #764ba2; }
.plan-tab[data-tab="blog"] { --tab-color: #4CAF50; --tab-color-light: #2E7D32; }
.plan-tab[data-tab="leads"] { --tab-color: #FF6B6B; --tab-color-light: #EE5A24; }

.plan-tab.active i {
    transform: scale(1.1);
}

.plan-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.7);
    color: #1a1a1a;
}

/* Tab Content */
.plans-content {
    padding: 30px;
}

.plan-content {
    display: none;
    animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.plan-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Compact Card */
.plan-card.compact {
    background: white;
    border-radius: 12px;
    padding: 25px;
    border: 2px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.plan-card.compact:hover {
    transform: translateY(-2px);
}

.plan-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.plan-header h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.plan-header i {
    font-size: 24px;
}

.plan-header .fa-crown { color: #FFD700; }
.plan-header .fa-star { color: #667eea; }
.plan-header .fa-blog { color: #4CAF50; }
.plan-header .fa-bullseye { color: #FF6B6B; }

.plan-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.plan-badge { background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); color: #8B4513; }
.plan-badge.featured { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; }
.plan-badge.new { background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%); color: white; }
.plan-badge.hot { background: linear-gradient(135deg, #FF6B6B 0%, #EE5A24 100%); color: white; }

.plan-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.plan-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}

.plan-benefits i {
    color: #28a745;
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 14px;
}

/* Pricing */
.plan-pricing {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.price {
    font-size: 32px;
    font-weight: 800;
    color: #1f253d;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.period {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    margin-left: 2px;
}

.pricing-note {
    font-size: 13px;
    color: #888;
    display: block;
}

/* Status */
.plan-status {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    border: 1px solid #c8e6c9;
}

.plan-status i {
    font-size: 16px;
}

/* Buttons */
.plan-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    width: 100%;
    letter-spacing: 0.3px;
}

.plan-btn.primary {
    background: linear-gradient(135deg, #1f253d 0%, #110a35 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(31, 37, 61, 0.2);
}

.plan-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(31, 37, 61, 0.3);
}

.plan-btn.secondary {
    background: white;
    color: #666;
    border-color: #ddd;
}

.plan-btn.secondary:hover {
    background: #f8f9fa;
    border-color: #1f253d;
    color: #1f253d;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .plans-tabs {
        padding: 8px 8px 0;
    }
    
    .plan-tab {
        padding: 12px 4px;
        font-size: 11px;
    }
    
    .plan-tab i {
        font-size: 16px;
    }
    
    .plans-content {
        padding: 20px;
    }
    
    .plan-card.compact {
        padding: 20px;
    }
    
    .plan-header h4 {
        font-size: 18px;
    }
    
    .price {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .plans-tabs {
        flex-wrap: wrap;
    }
    
    .plan-tab {
        flex: 0 0 calc(50% - 8px);
        margin-bottom: 8px;
        border-radius: 8px;
    }
    
    .plan-tab.active {
        border-radius: 8px;
    }
    
    .plan-tab.active::before {
        height: 100%;
        width: 4px;
        right: auto;
        bottom: 0;
    }
}

     .visible-link {
        color: #538fff;
        font-weight: bold;
        
     }
  .column {
  float: left;
  width: 30.33%;
  font-weight: 600;
}

/* .google-auto-placed {
   display: none !important;
} */

.section-title {
    font-size: 30px;
}
    .offer-cards-container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .offer-card {
        display: flex;
        width: 750px; /* Slightly wider to accommodate coupon code */
        background: rgb(249, 252, 234);
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        overflow: hidden;
        font-family: Arial, sans-serif;
    }
    
    .offer-discount {
        background: #e8eefb; /* Orange color like GoDaddy */
        color: rgb(114, 115, 113);
        padding: 20px 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 150px;
    }
                                
    .bold-hr {
        border-top: 0.1px solid #b1b1b1;
        margin-bottom: 20px;
    }
    .light-hr {
        margin-bottom: 20px;
        margin-top: 20px;
    }
    .discount-value {
        font-size: 28px;
        font-weight: bold;
        line-height: 1;
        border:#b9b8b8 dotted;
        width: 100px;
        height: 120px;
        display: flex;
        text-align: center;
        align-items: center;
    }
    
    .discount-type {
        font-size: 14px;
        text-transform: uppercase;
        font-weight: bold;
        margin-top: 5px;
    }
    
.offer-details {
    padding: 15px;
    flex-grow: 1;
    /* text-align: right !important; */
}
    
    .offer-title {
        color: #333;
        margin: 0 0 10px 0;
        font-size: 16px;
        font-weight: bold;
    }
    
    .offer-description {
        color: #666;
        font-size: 14px;
        margin: 0 0 12px 0;
        line-height: 1.4;
    }
    
 .soical-icone {
   font-size:30px;
   color: #006ec9;
 }
    .offer-code {
        background: #f5f5f5;
        padding: 8px;
        font-size: 14px;
        margin-bottom: 15px;
        border-radius: 4px;
        color: #333;
        max-width: 350px;
        /* display: flex;
        justify-content: space-between; */
        /* text-align: left; */
    }
    .copy-btn {
    background-color: transparent;
    border: none;
    color: #000;
    cursor: pointer;
    font-size: 1rem;
    margin-left: 50px;
}
    .offer-button {
        display: inline-block;
        background: #3565c6;
        color: white;
        padding: 8px 20px;
        border-radius: 4px;
        text-decoration: none;
        font-size: 14px;
        font-weight: bold;
        transition: background 0.3s ease;
    }
    .offer-button-right{
        text-align:right;
    }
    
    .offer-button:hover {
        background: #0095e0;
    }
    
    .no-offers {
        text-align: center;
        padding: 20px;
        color: #888;
    }
    
    .no-offers i {
        font-size: 24px;
        margin-bottom: 10px;
    }
    a {
  text-decoration: none !important;
  color: #000;
}

    .business-link {
        color: #337ab7;
    }
.hours {
    margin-top: 0px !important;
}

a.view-button {
    border-radius: 5px !important;
}
a.save-button {
    border-radius: 5px;
}

.bold-quote {
    text-align: center;
    padding: 3rem 2rem;
    margin: 3rem auto;
    max-width: 800px;
    background: #f5f4f4;
    border-radius: 16px;
    color: rgb(0, 0, 0);
    position: relative;
}
.bold-quote i {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
/* blockquote {
    border-left: 5px solid #f5f4f4 !important;
} */

.row.equal-height {
    display: flex;
    flex-wrap: wrap;
}

.row.equal-height > [class*='col-'] {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px; /* Optional: adds space between rows */
}

.row.equal-height .card-container {
    flex: 1;
    display: flex;
}

.row.equal-height .card {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Optional: Add some styling to make cards look better */
.card {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.listing-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
}

.listing-title a {
    color: #007bff;
    /* font-weight: bold; */
    text-decoration: none;
}

.listing-title a:hover {
    color: #523990;
}

.listing-info {
    margin-bottom: 5px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.listing-info span {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px;
    word-wrap: break-word; /* Ensures long text wraps */
}

.listing-info small {
    color: #666;
    margin-top: 5px;
}


    .unclaimed-tooltip {
  position: absolute; /* or fixed if you want it relative to viewport */
  top: 0;
  left: 0;
  visibility: hidden; /* hide until positioned */
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 9999;
}

.unclaimed-tooltip.visible {
  visibility: visible;
  opacity: 1;
}

.unclaimed-tooltip.position-above::after,
.unclaimed-tooltip.position-below::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}
