/* CALCULATOR INPUT FORM */
.container {
    width: 100%;
    max-width: 400px;
    margin: 100px auto 0 auto;
    font-family: 'DM Mono';
    color: #adf7ff;
}

/* UPDATED INPUT BOX STYLE FOR PRICE INPUTS */
#fee-form input[type="number"] {
    background: none;
    border: none;
    /* border-bottom: 2px solid whitesmoke; */
    border-bottom: 1px solid #57CDFF;
    color: #adf7ff;
    font-family: 'DM Mono';
    font-size: 16px;
    text-align: left;
    outline: none;
    width: 100%;
    padding-bottom: 5px;
    margin-bottom: 35px;
}
.price-inputs {
    display: flex;
    gap: 25px;
}

.price-inputs input[type="number"] {
    flex: 1;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* REMOVE BLUE HIGHLIGHT */
#fee-form input[type="number"]:focus,
#fee-form select:focus,
#fee-form button:focus {
    outline: none;
    box-shadow: none;
    /* border-color: whitesmoke;  keep border stable on focus */
}

/* SELECT DROPDOWN STYLED LIKE RESULTS DROPDOWN */
#fee-form select {
    width: 100%;
    height: 35px;
    padding: 0 10px;
    font-size: 1rem;
    font-family: 'DM Mono';
    background-color: #00a2ff;
    color: whitesmoke;
    /* border: 2px solid #adf7ff; */
    border: none;
    border-radius: 2px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-align-last: left;
    cursor: pointer;
    box-shadow: none;
}
#fee-form select:hover {
    background-color: #004b7d;
}

/* Button Style */
#fee-form button {
    background-color: #00a2ff;
    color: whitesmoke;
    margin-top: 35px;
    font-weight: normal;
    width: 100%;
    height: 35px;
    font-family: 'DM Mono';
    /* border: 2px solid #adf7ff; */
    border: none;
    border-radius: 2px;
    font-size: 15px;
    text-align: left;
}
#fee-form button:hover {
    background-color: #004b7d;
}

/* CALCULATOR RESULTS */
#results {
    color: #adf7ff;
    font-family: 'DM Mono';
    margin-top: 35px;
    width: 88%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    background-color: #111;
    padding: 0 10px 10px 10px;
    border-bottom: 1px solid #444;
    border-radius: 2px;
}
#results h2 {
    font-weight: bold;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}
.results-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.results-column {
    flex: 1 1 45%;
    background-color: #1a1a1a;
    border: 1px solid #444;
    border-radius: 2px;
    padding: 10px;
}
.results-column h3 {
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
}
.result-row {
    display: flex;
    justify-content: space-between;
    margin: 5px 0;
    font-size: 0.9rem;
}
.result-row .label {
    color: whitesmoke;
}
.result-row .value {
    font-weight: bold;
    color: #adf7ff;
}
#disclaimer {
    color: #999;
    font-family: 'DM Mono';
    font-size: 0.75rem;
    margin-top: 20px;
    width: 88%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    background-color: #111;
    padding: 10px;
    border-radius: 2px;
    border: 1px solid #444;
}
#results,
#disclaimer {
    display: none;
}

/* MOBILE SCREENS */
@media (max-width: 768px) {
    #fee-form input {
        border-radius: 0;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        box-shadow: none;
        width: 90%;
    }
}
