.form-label { 
    font-weight: bold; 
}

.info-box {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
    background-color: #f9f9f9;
}

.comparison-table {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.highlight {
    background-color: #e7f3ff;
    padding: 2px 5px;
    border-radius: 3px;
}

.loan-type-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.loan-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.loan-type-card.active {
    border-color: #0d6efd;
    background-color: #f8f9fa;
}

.result-card {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.amortization-table th {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
}

.result-section {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.result-section.visible {
    opacity: 1;
}

@media (max-width: 768px) {
    .loan-type-card {
        margin-bottom: 15px;
    }
    
    .result-card {
        margin-bottom: 15px;
    }
}