/* 
 * Compare CSS
 * Custom styles for the compare page
 */

/* Comparison Table */
.comparison-card {
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    margin-bottom: 0;
}

.comparison-table th,
.comparison-table td {
    vertical-align: middle;
}

.feature-column {
    width: 180px;
    background-color: #f8f9fa;
    position: sticky;
    left: 0;
    z-index: 1;
}

.plan-column {
    min-width: 220px;
    background-color: #fff;
    border-left: 1px solid #dee2e6;
}

.feature-name {
    font-weight: 600;
    background-color: #f8f9fa;
    position: sticky;
    left: 0;
    z-index: 1;
}

.provider-logo {
    max-height: 40px;
    max-width: 120px;
    object-fit: contain;
}

.feature-value {
    padding: 8px 0;
}

.feature-value.highlight {
    font-size: 1.2rem;
    font-weight: bold;
    color: #0d6efd;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.period {
    font-size: 0.9rem;
    color: #666;
}

.actions-row {
    background-color: #f8f9fa;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .comparison-table {
        min-width: 650px;
    }
}
