/* Base Styles */
.result-card { background-color: #f1f9f1; border-radius: 12px; border: 1px solid #e2eee2; }
.data-box { background-color: #ffffff; border: 1px solid #f0f0f0; border-radius: 12px; }

.paywall {
    scroll-margin-top: 100px;
}

.blur {
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
}

/* Grid and Chips Alignment */
.info-chip {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 12px 15px;
    height: 100%;
    transition: transform 0.2s;
}
.info-chip:hover { border-color: #007bff33; }
.info-icon {
    width: 32px;
    height: 32px;
    background: #f0f7ff;
    color: #007bff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0; /* Prevent icon from shrinking */
}
.label-muted { color: #888; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; text-align: left; }
.data-value { color: #333; font-size: 0.95rem; font-weight: 700; margin-top: 2px; text-align: left; line-height: 1.2; }

/* Table Details */
.table-clean thead th { font-size: 0.75rem; text-transform: uppercase; color: #888; border-bottom: 2px solid #f0f0f0; padding: 15px; }
.table-clean td { padding: 14px; vertical-align: middle; border-bottom: 1px solid #f6f6f6; font-size: 0.9rem; }
.fw-medium { font-weight: 500; }

/* Paywall Blur */

.price-gradient {
    background: linear-gradient(90deg, #1e5bff, #4f8cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes pulse-green {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(25, 135, 84, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(25, 135, 84, 0); }
}