/* Income Tax Calculator Styles */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

.itc-container {
    max-width: 600px;
    margin: 40px auto;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Roboto', sans-serif;
}

.itc-heading {
    color: #f28c38; /* Orange */
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.itc-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.itc-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.itc-field label {
    color: #6b7280; /* Light gray */
    font-size: 14px;
    font-weight: 500;
}

.itc-select-wrapper {
    position: relative;
}

.itc-select-wrapper select {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    color: #1f2937;
    appearance: none;
    background: #f9fafb;
}

.itc-select-wrapper i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 14px;
}

.itc-accordion {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.itc-accordion-header {
    background: #f9fafb;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: #1f2937; /* Dark gray */
}

.itc-accordion-icon {
    transition: transform 0.3s ease;
}

.itc-accordion-icon.active {
    transform: rotate(180deg);
}

.itc-accordion-content {
    display: none;
    padding: 16px;
    background: #ffffff;
}

.itc-accordion-content.active {
    display: block;
}

.itc-field input {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    color: #1f2937;
    background: #f9fafb;
}

.itc-calculate-btn {
    background: #f28c38; /* Orange */
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.itc-calculate-btn:hover {
    background: #e07b30;
}

.itc-results {
    margin-top: 20px;
    padding: 16px;
    background: #eff6ff; /* Light blue */
    border-radius: 8px;
    color: #1f2937;
    font-size: 16px;
}

.itc-results p {
    margin: 8px 0;
}

/* Responsive Design */
@media (max-width: 600px) {
    .itc-container {
        margin: 20px;
        padding: 16px;
    }

    .itc-heading {
        font-size: 20px;
    }

    .itc-field label,
    .itc-select-wrapper select,
    .itc-field input,
    .itc-calculate-btn {
        font-size: 14px;
    }
}