.apex-finance-calculator {
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.apex-inputs-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.apex-input-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: #f9f9f9;
    box-sizing: border-box;
}

.apex-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    margin: 0;
    padding: 0;
}

.apex-select-wrapper,
.apex-input-wrapper {
    position: relative;
    width: 140px;
}

.apex-calc-select {
    width: 100%;
    padding: 4px 24px 4px 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #003DA5;
    background-color: transparent;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    text-align: left;
    cursor: pointer;
}

.apex-calc-input {
    width: 100%;
    padding: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #003DA5;
    background-color: transparent;
    border: none;
    border-bottom: 1px dashed rgba(0, 61, 165, 0.4);
    text-align: left;
    outline: none;
    box-sizing: border-box;
}

.apex-calc-input:focus {
    border-bottom-color: #003DA5;
}

.apex-select-wrapper::after {
    content: "▼";
    font-size: 8px;
    color: #003DA5;
    position: absolute;
    right: 4px;
    top: 52%;
    transform: translateY(-50%);
    pointer-events: none;
}

.apex-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eeeeee;
    padding-top: 16px;
    gap: 20px;
}

.apex-result-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.apex-result-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888888;
}

.apex-result-amount {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #003DA5;
    line-height: 1;
}

.apex-disclaimer {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: 11px;
    line-height: 1.5;
    color: #888888;
    margin-top: 8px;
}
