/* ICL Calculator Specific Styles */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-bottom: 2rem;
}

.card {
    border-radius: 0.5rem;
    overflow: hidden;
}

.card-header {
    font-weight: 600;
}

.input-group-text {
    background-color: #f8f9fa;
    border-right: none;
}

.form-control {
    border-left: none;
}

.form-control:focus {
    border-color: #ced4da;
    box-shadow: none;
}

.form-control:focus + .input-group-text {
    border-color: #ced4da;
}

#resultSection .card {
    border: none;
}

#resultSection .card-header {
    border-bottom: none;
}

.table th {
    font-weight: 600;
    background-color: #f8f9fa;
}

.alert {
    border-radius: 0.5rem;
}

/* Chart Styles */
#evolutionChart {
    max-height: 300px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .card {
        margin-bottom: 1rem;
    }
    
    #resultSection .row {
        margin-bottom: 1rem;
    }
}

/* Print Styles */
@media print {
    .hero-section,
    .card-header,
    .btn {
        display: none !important;
    }
    
    .card {
        border: none;
        box-shadow: none;
    }
    
    .table {
        border: 1px solid #dee2e6;
    }
} 