/* 
==============================================
    LIGHT THEME CALCULATOR STYLES
==============================================
*/

.calculator-wrapper.light-theme {
    background-color: #f8fcfb;
    border: 1px solid #e0f2f1;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    color: #0d4740;
}

.light-theme .cs-calc-header h3 {
    color: #0d4740;
    font-weight: 600;
    text-align: center;
}

.light-theme .cs-calc-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.light-theme h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #0d4740;
    text-align: center;
}

/* Input Area Styles */
.light-theme .role-input {
    background-color: #ffffff;
    border: 1px solid #e0f2f1;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 12px;
    min-height: 102px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.light-theme .role-input h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #147267;
    text-align: center;
    order: -1;
    width: 100%;
}

.light-theme .input-row {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-grow: 1;
}

.light-theme .input-group {
    flex: 0 1 45%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
}

.light-theme .input-group label {
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
    text-align: center;
    width: 100%;
}

.light-theme .input-group input {
    width: 100%;
    max-width: 120px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #b2dfdb;
    background-color: #fafffe;
    color: #0d4740;
    font-weight: 500;
    text-align: center;
    font-size: 0.9rem;
}

.light-theme .input-group input:focus {
    outline: none;
    border-color: #4db6ac;
    box-shadow: 0 0 0 2px rgba(77, 182, 172, 0.2);
}

/* Results Area Styles */
.light-theme .cost-breakdown-card,
.light-theme .savings-breakdown-card {
    background-color: #ffffff;
    border: 1px solid #e0f2f1;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.light-theme .cost-breakdown-card h5,
.light-theme .savings-breakdown-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #147267;
    border-bottom: 1px solid #e0f2f1;
    padding-bottom: 10px;
    text-align: center;
}

.light-theme .cost-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.95rem;
}

.light-theme .cost-item span:first-child {
    color: #555;
}

.light-theme .cost-item span:last-child {
    font-weight: 600;
    color: #0d4740;
}

.light-theme .cost-item.total {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid #b2dfdb;
    font-size: 1.1rem;
    font-weight: 700;
}

.light-theme .breakdown-grid {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.light-theme .breakdown-item {
    background-color: #e0f2f1;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    flex-grow: 1;
}

.light-theme .breakdown-item .label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #147267;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.light-theme .breakdown-item .value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d4740;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .light-theme .cs-calc-content {
        grid-template-columns: 1fr;
    }
    
    .light-theme .input-row {
        gap: 15px;
    }
    
    .light-theme .input-group {
        flex: 0 1 48%;
    }
}

@media (max-width: 768px) {
    .light-theme .cs-calc-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .light-theme .role-input {
        padding: 15px;
        min-height: 90px;
    }
    
    .light-theme .input-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .light-theme .input-group {
        flex: 1;
        width: 100%;
    }
} 