/* Custom styles for Comparo */

/* Best price highlight */
.best-price {
    background-color: #ecfdf5;
}

.best-price td:first-child {
    position: relative;
}

.best-price td:first-child::before {
    content: "★";
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #10b981;
    font-size: 1rem;
}

/* Price styling */
.price-main {
    font-weight: 600;
    color: #1f2937;
}

.price-best {
    color: #059669;
    font-weight: 700;
}

/* Availability badges */
.badge-available {
    background-color: #d1fae5;
    color: #065f46;
}

.badge-unavailable {
    background-color: #fee2e2;
    color: #991b1b;
}

.badge-unknown {
    background-color: #f3f4f6;
    color: #6b7280;
}

/* Loading animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Table hover effect */
tbody tr:hover {
    background-color: #f9fafb;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    table {
        font-size: 0.875rem;
    }

    th, td {
        padding: 0.5rem;
    }
}
