/*
* CSS styles for lowest price display functionality
* 20-12-2024
*/
.lowest-price-display {
    margin: 5px 0;
    padding: 8px 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.lowest-price-display:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

.lowest-price-text {
    font-size: 0.9em;
    font-weight: 500;
    color: #495057;
    display: block;
    line-height: 1.4;
}

.lowest-price-text::before {
    content: "💰";
    margin-right: 5px;
    font-size: 1.1em;
}

/* Responsive design for mobile devices */
@media (max-width: 768px) {
    .lowest-price-display {
        padding: 6px 10px;
        margin: 3px 0;
    }
    
    .lowest-price-text {
        font-size: 0.85em;
    }
}

/* Dark theme support */
@media (prefers-color-scheme: dark) {
    .lowest-price-display {
        background: linear-gradient(135deg, #343a40 0%, #495057 100%);
        border-color: #6c757d;
        color: #f8f9fa;
    }
    
    .lowest-price-text {
        color: #f8f9fa;
    }
    
    .lowest-price-display:hover {
        background: linear-gradient(135deg, #495057 0%, #6c757d 100%);
    }
} 