 
/* Price Comparison Styles for Enhanced MDS Sparkesykkel Aggregator */

/* Price Comparison Modal */
.price-comparison-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.comparison-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
    position: relative;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Comparison Header */
.comparison-header {
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px 12px 0 0;
    position: relative;
    overflow: hidden;
}

.comparison-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="0%" r="100%"><stop offset="0%" stop-color="rgba(255,255,255,.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><rect width="100" height="20" fill="url(%23a)"/></svg>') repeat-x;
    opacity: 0.3;
}

.comparison-header h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.comparison-header p {
    opacity: 0.9;
    font-size: 1.1rem;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.selected-vehicle-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.selected-vehicle-details h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.selected-vehicle-details p {
    opacity: 0.8;
    margin: 0;
}

.selected-vehicle-stats {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.selected-vehicle-stats .stat-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Comparison Filters */
.comparison-filters {
    padding: 1.5rem;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.comparison-filters label {
    font-weight: 600;
    color: #495057;
}

.comparison-filters select {
    padding: 0.5rem;
    border: 1px solid #ced4da;
    border-radius: 6px;
    background: white;
    font-size: 0.9rem;
}

.comparison-filters .filter-info {
    margin-left: auto;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Comparison Table */
.comparison-table-container {
    padding: 1.5rem;
    overflow-x: auto;
    max-height: 500px;
    overflow-y: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05
