body {
    font-family: Arial, sans-serif;
    color: #fff;
    background-color: #121212;
    margin: 0;
    padding: 0;
}

.deposit-container {
    display: grid;
    grid-template-columns: 1fr 3fr;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 20px;
    gap: 20px;
}

.sidebar {
    background-color: #121212;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
}

.sidebar h2,
.sidebar h3 {
    color: #f0b90b;
}

.sidebar p,
.sidebar ul {
    color: #ccc;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
}

.sidebar ul li a {
    color: #fff;
    text-decoration: none;
}

.deposit-content {
    flex: 1;
    padding: 20px;
    border-radius: 10px;
}

.sidebar nav ul li {
    margin-bottom: 10px;
}

.deposit-content h1 {
    color: #f0b90b;
    font-size: 24px;
}

.deposit-info {
    color: #f0b90b;
    margin: 10px 0;
    font-size: 1.2em;
}

.crypto-options button {
    background-color: transparent;
    border: 2px solid #f0b90b;
    color: #f0b90b;
    padding: 10px 20px;
    margin: 10px 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.crypto-options button:hover {
    background-color: #f0b90b;
    color: #000;
}

.deposit-address {
    display: flex;
    align-items: center;
    margin: 20px 0;
    gap: 10px;
}

.deposit-address input {
    width: 300px;
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: 1px solid #555;
    border-radius: 5px;
}

.qr-code {
    margin-left: 100px;
    height: 150px;
}

.deposit-address button {
    padding: 10px;
    background-color: #f0b90b;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.deposit-note {
    color: #aaa;
    margin: 20px 0;
    font-size: 14px;
}

.history-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.history-table th,
.history-table td {
    padding: 10px;
    border-bottom: 1px solid #555;
    border: 1px solid #333333;
}

.history-table th {
    background-color: #333;
    color: #f0b90b;
    text-align: left;
    border: 1px solid #333333;
}

.history-table td {
    background-color: #222;
    color: #fff;
}

.footer {
    text-align: center;
    padding: 20px;
    color: #ccc;
    background-color: #121212;
}

body.light-theme .deposit-container {
    /* display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 20px;
    padding: 20px;
    background-color: #f8f8f8; */
    color: #333;
}

body.light-theme .sidebar {
    background-color: #e2e2e2;
    border-radius: 10px;
    padding: 20px;
    color: #333;
    /* box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); */
}

body.light-theme .sidebar h2,
body.light-theme .sidebar h3 {
    color: #c09300;
}

body.light-theme .sidebar p {
    color: #555;
}

body.light-theme .sidebar nav ul {
    list-style-type: none;
    padding: 0;
}

body.light-theme .sidebar nav ul li a {
    color: #333;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}

body.light-theme .sidebar nav ul li a:hover {
    /* color: #f0b90b;  */
    color: #ff954e;
}

body.light-theme .deposit-content {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    color: #333;
    /* box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); */
}

body.light-theme .deposit-content h1 {
    color: #a92710;
    font-size: 24px;
}

body.light-theme .deposit-content .deposit-info {
    color: #555;
}

body.light-theme .crypto-options button {
    background-color: #f2f2f2;
    border: 1px solid #909090;
    color: #333;
    /* padding: 10px 20px; */
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    /* margin-right: 10px; */
}

body.light-theme .crypto-options button:hover {
    background-color: #e0e0e0;
    border-color: #ccc;
}

body.light-theme .deposit-address {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

body.light-theme .deposit-address input[type="text"] {
    background-color: #f8f8f8;
    border: 1px solid #909090;
    padding: 10px;
    color: #333;
    width: 300px;
    border-radius: 5px;
}

body.light-theme .deposit-address button {
    background-color: #ff954e;
    color: #333;
    padding: 10px;
    border: 1px solid #8b8b8b;
    border-radius: 5px;
    cursor: pointer;
}

body.light-theme .deposit-address button:hover {
    background-color: #ffa96f;
}

body.light-theme .deposit-address img {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.deposit-address img {
    border-radius: 10px;
}

body.light-theme .deposit-note p {
    color: #555;
    /* line-height: 1.6; */
}

body.light-theme .history-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

body.light-theme .history-table th,
body.light-theme .history-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
    color: #333;
}

body.light-theme .history-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

body.light-theme .history-table td {
    background-color: #ffffff;
}

body.light-theme .history-table tr:hover td {
    background-color: #f8f8f8;
}

body.light-theme .sidebar nav ul li {
    margin-bottom: 10px;
}

body.light-theme {
    background: #ffffff;
}

body.light-theme .sidebar h2,
body.light-theme .sidebar h3 {
    color: #f47a00;
}

/* 

@media (max-width: 1200px) {
    .deposit-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        align-items: flex-start;
    }

    .sidebar {
        width: 30%;
    }

    .deposit-address {
        flex-direction: column;
        align-items: flex-start;
    }

    .qr-code {
        margin-left: 0;
        align-self: center; 
    }

    .crypto-options button {
        width: 25%; 
        margin: 5px 0;       
    }
}

@media (max-width: 768px) {
    .deposit-container {
        padding: 10px;
    }

    .sidebar {
        padding: 15px;
        width: 100%; 
    }

    .crypto-options button {
        width: 30%; 
        margin: 5px 0;
    }

    .history-table thead {
        display: none; 
    }

    .history-table tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #555;
        border-radius: 5px;
    }

    .history-table td {
        display: block;
        text-align: left;
        padding: 8px;
    }

    .history-table td::before {
        content: attr(data-label);
        font-weight: bold;
        color: #f0b90b;
    }
}

@media (max-width: 480px) {
    .deposit-container {
        flex-direction: column;
        gap: 10px;
    }

    .sidebar {
        width: 100%;
        padding: 10px;
    }

    .deposit-content {
        padding: 15px;
    }

    .crypto-options button {
        width: 100%;
        margin: 5px 0;
    }

    .deposit-address {
        flex-direction: column;
        gap: 10px;
    }

    .qr-code {
        width: 100px;
        height: auto;
        margin: 0 auto;
    }

    .history-table {
        font-size: 14px;
    }

    .history-table thead {
        display: none;
    }

    .history-table tr {
        display: block;
        margin-bottom: 10px;
        border: 1px solid #555;
        border-radius: 5px;
    }

    .history-table td {
        display: block;
        padding: 8px;
        text-align: left;
    }

    .history-table td::before {
        content: attr(data-label);
        font-weight: bold;
        color: #f0b90b;
        display: inline-block;
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    .deposit-container {
        flex-direction: column;
        padding: 10px;
        gap: 15px;
    }

    .sidebar {
        width: 100%;
        padding: 15px;
    }

    .deposit-content {
        padding: 10px;
    }

    .crypto-options button {
        width: 80%;
        margin: 5px auto;
    }

    .qr-code {
        width: 120px;
        height: auto;
        margin: 10px auto;
    }

    .history-table td {
        display: block;
        padding: 8px;
    }

    .history-table td::before {
        content: attr(data-label);
        font-weight: bold;
        color: #f0b90b;
        display: inline-block;
        margin-right: 10px;
    }
} */

.sidebar ul li a:hover {
    color: #f0b90b;
}

.crypto-options button,
body.light-theme .crypto-options button {
    margin: 10px 5px;
}


.faq-content {
    border-radius: 10px;
    padding: 20px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); */
}

.faq-content h1 {
    color: #f0b90b;
    font-size: 24px;
}

.qr-container{
    display: grid;
    grid-template-columns: 1fr 3fr;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .deposit-address{
        font-size: 10px!important;
    }
    
    .qr-container{
        display: flex;
        max-width: 1200px;
        margin: 0 auto;
        margin-top: 20px;
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    .deposit-address{
        margin: 0;
    }
}