@import url("styles.css");
/* Premium dark theme with Binance logo color (#F0B90B) */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #1C2526; /* Dark black background */
    color: #FFFFFF; /* White text for contrast */
    min-height: 100vh;
}
.active{
    border-bottom: solid 2px #f3ba2f;
}
/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 256px;
    height: 100%;
    background: linear-gradient(180deg, #151923 0%, #0B0E14 100%);
    color: #F7FAFC;
    transition: transform 0.3s ease-in-out;
    z-index: 20;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
i{
    width: 20px;
}
.sidebar.hidden {
    transform: translateX(-100%);
    display: none;
}

.sidebar-content {
    padding: 2rem;
}

.sidebar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F3BA2F;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-menu {
    margin-top: 2rem;
    list-style: none;
    padding: 0;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: #F7FAFC;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-link:hover {
    background-color: #F3BA2F;
    color: #0D1117;
    box-shadow: 0 0 10px rgba(243, 186, 47, 0.5);
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 15;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.sidebar-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.sidebar-overlay:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
}

/* Hamburger menu */
.hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 30;
    background: transparent;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}

/* Wallet button styling */
.wallet-button {
    margin: 20px 0;
    padding: 12px;
    background-color: #F0B90B;
    color: #1C2526;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    text-align: center;
}

.wallet-button:hover {
    background-color: #D4A017;
}

/* Popup styling */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: #222b2c;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 300px;
    width: 90%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.popup-content p {
    margin: 0 0 20px;
    color: #D1D5DB;
    font-size: 16px;
}

.popup-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.popup-button {
    padding: 10px 20px;
    background-color: #F0B90B;
    color: #1C2526;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.popup-button:hover {
    background-color: #D4A017;
}

.popup-button.cancel {
    background-color: #4B5563;
}

.popup-button.cancel:hover {
    background-color: #6B7280;
}

/* Main container */
.container {
    max-width: 600px;
    margin: 80px auto 40px;
    padding: 0 20px;
}

/* Form styling */
form {
    display: flex;
    flex-direction: column;
    background-color: #222b2c;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

h1 {
    text-align: center;
    color: #F0B90B;
    margin-bottom: 20px;
    font-size: 24px;
}

label {
    margin-top: 15px;
    font-size: 14px;
    color: #D1D5DB;
}

input, textarea, select {
    margin-top: 5px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    background-color: #2D3748;
    border: 1px solid #4B5563;
    border-radius: 5px;
    color: #FFFFFF;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

input:disabled {
    background-color: #4B5563;
    cursor: not-allowed;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #F0B90B;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

button {
    margin-top: 20px;
    padding: 12px;
    background-color: #F0B90B;
    color: #1C2526;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #D4A017;
}

#response {
    margin-top: 20px;
    padding: 15px;
    background-color: #222b2c;
    border: 1px solid #4B5563;
    border-radius: 5px;
    display: none;
    color: #D1D5DB;
}

#response p {
    margin: 5px 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar:not(.hidden) {
        transform: translateX(0);
        display: block;
    }

    .hamburger {
        display: flex;
    }

    .container {
        margin: 80px auto 20px;
        padding: 0 10px;
    }

    form {
        padding: 20px;
    }

    h1 {
        font-size: 20px;
    }

    .wallet-button {
        font-size: 14px;
        padding: 10px;
    }
}