#btc-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: #fff;
    z-index: 99999;
    transition: 0.3s;
    overflow-y: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: none;
}

#btc-sidebar.active {
    right: 0;
}

/* BTC specific colors and styles */

/* Balance displays */
.invest-btc h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.invest-btc h3 span {
    font-size: 1.2rem !important;
    color: #F7931A;
}

.invest-btc .usdt-total span {
    color: #26A17B !important;
}


#btc-sidebar input {
    width: 100%;
    margin: 4px 0 17px 0px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #7c7979;
    font-size: 20px;
}

#btc-sidebar .new-div span {
    color: #F7931A;
}

#btc-sidebar .detail-btn {
    background: #F7931A;
    color: white;
}

#btc-sidebar .detail-btn span {
    color: white;
}

#btc-sidebar .detail-btn:hover {
    background: #E88308;
}

#btc-sidebar .closeSidebar {
    border: 2px solid #000;
    background-color: #000;
    color: #fff;
    padding: 12px;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    align-items: center;
    display: flex;
    justify-content: center;
    transition: 0.3s;
}

#btc-sidebar .closeSidebar:hover {
    background-color: transparent;
    color: #000;
    transition: 0.3s;
}

#btc-sidebar .max-button:hover {
    background: #F7931A;
    color: white;
    border-color: #F7931A;
}
