.convert {
            
        }
        .convert .header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .convert .header i {
            font-size: 20px;
            margin-right: 10px;
        }
        .convert .header span {
            font-size: 18px;
        }
        .convert-box {
            background-color: #13152a;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
        }
       .convert-box .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1em;
    height: 3em;
    background: #1a1d3a;
    padding: 0 .5em;
    border-radius: .5em;
}
        .convert-box .row img {
            width: 20px;
            height: 20px;
            margin-right: 10px;
        }
        .convert-box .row input {
            background: none;
            border: none;
            color: #ffffff;
            font-size: 16px;
            flex-grow: 1;
            margin-left: 10px;
        }
        .convert-box .row input::placeholder {
            color: #666;
        }
        .convert-box .exchange-rate {
    background-color: #2a2d4e;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-size: .9em;
    display: flex;
    align-items: center;
    gap: .5em;
}
        .balance-box {
            background-color: #2a2d4e;
            padding: 10px;
            border-radius: 5px;
            text-align: center;
            margin-bottom: 20px;
        }
        .convert-button {
            background-color: #613af1;
            color: #ffffff;
            border: none;
            padding: 10px;
            border-radius: 5px;
            width: 100%;
            font-size: 16px;
            cursor: pointer;
        }
        .convert select {
            background-color: #1a1d3a;
            color: #ffffff;
            border: none;
            padding: 5px;
            border-radius: 5px;
            font-size: 16px;
            width: 100%;
        }
        select#crypto-select-from {
    width: 4em;
}
.convert-box select * {
    text-transform: uppercase;
}
select#crypto-select-from option:nth-child(2) {
    display: none !important;
}
select#crypto-select-to option:last-child {
    display: none !important;
}