body { font-family: 'Inter', sans-serif; background-color: #FDFBF7; color: #4A4A4A; }
.result-table th, .result-table td { padding: 0.75rem; text-align: left; vertical-align: middle; }
.result-table th { background-color: #4E8D7C; color: white; }
.result-table tr:nth-child(even) { background-color: #f7fafc; }
.result-table tr:hover { background-color: #edf2f7; }
.result-table td.currency { text-align: right; }
.result-table .font-bold { font-weight: 600; }
.result-table .text-green-600 { color: #38a169; }
.result-table .text-red-600 { color: #e53e3e; }
.input-line {
    background-color: transparent;
    border: 0;
    border-bottom: 2px solid #d2d6dc;
    outline: 0;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    transition: border-color 0.2s ease-in-out;
}
.input-line:focus {
    border-bottom-color: #4E8D7C;
    box-shadow: none;
    outline: none;
}
.warning-tooltip {
    position: relative;
    display: inline-block;
    cursor: help;
}
.warning-tooltip .tooltip-text {
    display: none;
}
#dynamic-tooltip {
    transition: opacity 0.2s ease-in-out;
    pointer-events: none;
}
.modal-overlay {
    transition: opacity 0.3s ease;
}
.modal-content {
    transition: transform 0.3s ease, opacity 0.3s ease;
}
/* Estilos para a transição suave do formulário personalizado */
#custom-caixinha-wrapper {
    transition: all 0.4s ease-in-out;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}
#custom-caixinha-wrapper:not(.hidden) {
    max-height: 500px; /* Altura suficiente para o conteúdo */
    opacity: 1;
}

#custom-ir-fixed-value-container {
    transition: all 0.3s ease-in-out;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}
#custom-ir-fixed-value-container:not(.hidden) {
    max-height: 100px;
    opacity: 1;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: #4E8D7C;
}
input:checked + .slider:before {
    transform: translateX(22px);
}