.deposit-calculator-container {
    font-family: 'Arial', sans-serif;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.deposit-calculator-container h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 20px;
}

.calculator-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.tab-button {
    padding: 10px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    color: #7f8c8d;
    transition: all 0.3s;
}

.tab-button.active {
    color: #3498db;
    border-bottom: 3px solid #3498db;
}

.calculator-tab {
    display: none;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.calculator-tab.active {
    display: block;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #34495e;
}

.input-group input, 
.input-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.tenure-input {
    display: flex;
}

.tenure-input input {
    flex: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.tenure-input select {
    width: auto;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: none;
}

.button-group {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.button-group button {
    flex: 1;
    padding: 12px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button-group button:hover {
    background-color: #2980b9;
}

.button-group .reset-btn {
    background-color: #95a5a6;
}

.button-group .reset-btn:hover {
    background-color: #7f8c8d;
}

.results-container {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    display: none;
}

.results-container h3 {
    margin-top: 0;
    color: #2c3e50;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    font-size: 16px;
}

.result-item span:first-child {
    font-weight: 600;
    color: #34495e;
}

.result-item span:last-child {
    color: #27ae60;
    font-weight: bold;
}

/* Responsive styles */
@media (max-width: 768px) {
    .deposit-calculator-container {
        padding: 15px;
    }
    
    .calculator-tabs {
        flex-direction: column;
    }
    
    .tab-button {
        text-align: center;
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    
    .tab-button.active {
        border-bottom: none;
        border-left: 3px solid #3498db;
    }
    
    .tenure-input {
        flex-direction: column;
    }
    
    .tenure-input input {
        border-radius: 4px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    
    .tenure-input select {
        border-radius: 4px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-left: 1px solid #ddd;
        border-top: none;
    }
}