
.exchange-calc{
    min-height: 80vh;
    /* max-height: 80vh; */
    width: 100%;
    text-align: left;
}

@media (max-width: 767.98px) {
    .exchange-calc {
        min-height: auto;
    }
}

.exchange-card {
    min-width: 340px;
    max-width: 500px;
    background: white;
    padding: 30px;
    border-radius: 20px;
/*    box-shadow: 0 6px 15px rgba(6, 9, 5, 0.30);*/
    position: relative;
/*    overflow: hidden;*/ /*update to fix the dropdown visible on index page properly*/
    overflow: visible;

}

.amount-container{
    min-width: 290px;
    max-width: 480px;
    height: 85px;
    border-radius: 15px;
    background: aliceblue;
    padding: 15px 15px;
}

.dropdown-menu {
    max-height: 250px;
    overflow-y: auto;
    border: 1px solid #ddd;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 8px;
}

/* Modern dropdown styling */
.modern-dropdown {
    max-height: 250px;
    overflow-y: auto;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 228px;
    z-index: 1050;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding-top: 0;
    border: 1px solid #ddd;
}

.search-input {
    margin-top: 10px;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: #f8f9fa;
    border: none;
    outline: none;
    font-size: 14px;
    border-bottom: 2px solid #007bff;
    border-radius: 8px 8px 0 0;
}

.dropdown-item {
    padding: 5px 10px;
    transition: 0.2s ease-in-out;
    border-radius: 5px;
}

.dropdown-item:hover {
    background-color: var(--bs-success-bg-subtle) !important;
}

.highlight {
    background-color: #e3fcef;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: bold;
    margin: 1px 30px;
}

.btn-animate {
    transition: 0.3s ease-in-out;
}

.btn-animate:hover {
    transform: scale(1.05);
}

.fee-section {
    margin-top: 15px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 10px;
}

.fee-section p {
    margin-bottom: 5px;
    font-size: 15px;
}

.fee-highlight {
    font-weight: bold;
    color: #007bff;
}

#sendAmount:focus, #receiveAmount:focus, #receiveAmount:active,
#sendAmount:active {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

#sendAmount::-webkit-inner-spin-button, #sendAmount::-webkit-outer-spin-button,
#receiveAmount::-webkit-inner-spin-button, #receiveAmount::-webkit-outer-spin-button
{
    -webkit-appearance: none;
    margin: 0;
}

#receiveAmount, #sendAmount {
    -moz-appearance: textfield; /* Firefox */
}



/* @media (min-width: 1024px) {
    .exchange-card {
        width: 90vh;
    }
} */

.exchange-calculator {
    color: black;
    text-align: center;
    right: -8%;
    top: 8%;
}

/* Fade-in animation */
@keyframes fadeIn {from { opacity:0;
    transform: translateY(20px);
}

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* Responsive Tweaks */
@media ( max-width : 900px) {
    .exchange-calculator {
    /* width: 90%; */
        padding: 15px;
    }
    .exchange-calculator input, .exchange-calculator select,
    .exchange-calculator button {
        font-size: 0.9rem;
    }
}

@media ( max-width : 1025px) {
    .exchange-calculator {
        margin-right: 50px;
    }
}

@media ( max-width : 800px) {
    .exchange-calculator {
        margin-right: 0px;
    }
}

/*        .exchange-calc {*/
/*            width: 80%;*/
/*            margin-left: auto;*/
/*            display: block;*/
/*        }*/

.get-started-parent {
    width: 100%;
    position: relative;
    border-radius: 10px;
    background-color: #012169;
    height: 3.25rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 0.625rem;
    box-sizing: border-box;
    text-align: left;
    font-size: 1.125rem;
    color: #fff;
/*    font-family: Inter;*/
    font-weight: bold;
}

.calculator-label{
    position: relative;
    font-size: 1.125rem;
/*    font-family: var(--font-inter);*/
    color: var(--color-gray);
    text-align: left;
    display: inline-block;
    font-weight: 600!important;
}

.amountInputField{
    background-color: transparent !important;
    font-size: 1.8rem!important;
    font-weight: bold!important;
    border: none!important;
    outline: none!important;
    border-color: transparent!important;
    text-align: left!important;
    flex: 1!important;
    margin: 0px!important;
    padding-top: 0px!important;
    padding-bottom: 0!important;
    margin-top: -8px!important;

}
