/* Main Container */
.lic-calculator-container {
    max-width: 500px;
    margin: 20px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
.lic-calculator-header {
    text-align: center;
    margin-bottom: 25px;
    color: #2c3e50;
}

.lic-calculator-header h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
}

.lic-calculator-header p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #7f8c8d;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #34495e;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
    background-color: rgba(255, 255, 255, 0.8);
}

.form-control:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

/* Button Styles */
.calculator-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(to right, #3498db, #2c3e50);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.calculator-button:hover {
    background: linear-gradient(to right, #2980b9, #1a252f);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Result Styles */
.calculator-result {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    border-radius: 8px;
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.result-header {
    text-align: center;
    margin-bottom: 15px;
}

.result-header h4 {
    margin: 0;
    font-size: 18px;
}

.result-header p {
    margin: 5px 0 0;
    font-size: 12px;
    opacity: 0.9;
}

.result-amount {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin: 15px 0;
}

.result-breakdown {
    font-size: 14px;
    line-height: 1.6;
}

/* Footer Styles */
.calculator-footer {
    margin-top: 20px;
    font-size: 12px;
    text-align: center;
    color: #7f8c8d;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 600px) {
    .lic-calculator-container {
        padding: 20px;
        margin: 20px 15px;
    }
}