body.light-theme {
    font-family: Arial, sans-serif;
    /* margin-top: 50px; */
    padding: 0;
    color: #262626!important; 
}

body {
    font-family: Arial, sans-serif;
    /* margin-top: 50px; */
    padding: 0;
    color: #fff!important; 
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 70px;
}

.faq-menu {
    border-radius: 10px;
    padding: 20px;
    background-color: #121212;
}

body.light-theme .faq-menu {
    border-radius: 10px;
    padding: 20px;
    background-color: #e0e0e0;
}

.faq-menu h3 {
    margin-bottom: 15px;
    font-size: 1.5em;
}

.faq-category-button {
    background: none;
    border: none;
    font-size: 1.2em;
    text-align: left;
    padding: 10px 0;
    cursor: pointer;
    width: 100%;
}

.faq-category-button:hover {
    color: #f0b90b;
}

.faq-content {
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.header-image {
    margin-bottom: 20px;
}

.link-container {
    display: flex;
    gap: 10px;   
}

.link-container input {
    width: 40%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    color: #ffffff;
    background-color: #333;
    opacity: 0.6;       
}

body.light-theme .link-container input {
    width: 40%;
    padding: 10px;
    border: 1px solid #858585;
    border-radius: 4px;
    font-size: 14px;
    color: #000000;
    background-color: #cdcdcd;    
}

.copy-link-button {
    display: inline-flex; 
    justify-content: center;
    align-items: center; 
    height: 44px;
    box-sizing: border-box;
    background-color: transparent;
    border: 1px solid #f0b90b;
    color: #f0b90b;
    padding: 0 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s ease;
    max-width: 130px;
    font-size: 15px; 
}

.copy-link-button:hover {
    background-color: #ffbb00;
    color: #000!important;
}

body.light-theme .copy-link-button:hover {
    background-color: #ffa96f;
    color: #000!important;
}

body.light-theme .copy-link-button {
    color: #f0b90b;
    border-color: #000;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.category-card {
    border-radius: 10px;
    padding: 20px;
    text-align: center;   
}

.category-card h3 {
    margin-bottom: 10px;
}

.category-card p strong {
    color: #f0b90b;
    font-size: 1.7em;
}

body.light-theme .category-card p strong {
    color: #f06a0b;
    font-size: 1.7em;
}

.referral-history {
    margin-top: 40px;
}

.referral-history h2 {
    margin-bottom: 20px;
}
.referral-history th {
    background-color: #333;
    color: white;
}

.referral-history td {
    background-color: #2d2d2d;
    color: white;
}

body.light-theme .referral-history th, 
body.light-theme .referral-history td {
    border: 1px solid #ccc;
}

body.light-theme .referral-history th {
    background-color: #f9f9f9;
    color: #333;
}

body.light-theme .referral-history td {
    background-color: #ffffff;
    color: #333;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th,
table td {
    border: 1px solid #555;
    padding: 10px;
    text-align: left;
}

table th {
    font-weight: bold;
}

.sidebar {
    padding: 20px;
    border-radius: 10px;
}

.sidebar h2 {
    margin-bottom: 15px;
    font-size: 1.5em;
}

.sidebar nav ul {
    list-style: none;
    padding: 0;
}

.sidebar nav ul li {
    margin-bottom: 10px;
}

.sidebar nav ul li a {
    text-decoration: none;
    font-size: 1.2em;
    display: block;
}

.deposit-content {
    border-radius: 10px;
    padding: 20px;
}

.deposit-content h1 {
    margin-bottom: 20px;
    font-size: 1.8em;
}

.crypto-options {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.crypto-options button {
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

.deposit-address {
    display: flex;
    align-items: center;
    gap: 10px;
}

.deposit-address input {
    padding: 10px;
    border-radius: 5px;
    width: 70%;
    font-size: 1em;
}

.deposit-address button {
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.history-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.history-table th, .history-table td {
    padding: 10px;
    border-bottom: 1px solid #555;
}

.sidebar {
    background-color: #333;
}

.sidebar h2, .sidebar h3 {
    color: #f0b90b;
}

.sidebar nav ul li a {
    color: #ccc;
}

.sidebar nav ul li a:hover {
    color: #f0b90b;
}

.deposit-content {
    background-color: #222;
    color: #fff;
}

.deposit-content h1 {
    color: #f0b90b;
}

.crypto-options button {
    background-color: transparent;
    border: 2px solid #f0b90b;
    color: #f0b90b;
}

.crypto-options button:hover {
    background-color: #f0b90b;
    color: #000;
}

.deposit-address input {
    background-color: #333;
    color: #fff;
    border: 1px solid #555;
}

.deposit-address button {
    background-color: #f0b90b;
    color: #000;
    border: none;
}

.history-table th {
    background-color: #333;
    color: #f0b90b;
}

.history-table td {
    background-color: #222;
}


body.light-theme {
    background-color: #f8f8f8;
    color: #333;
}

.sidebar {
    background-color: #e2e2e2;
    color: #333;
}

.sidebar h2, .sidebar h3 {
    color: #c09300;
}

.sidebar nav ul li a {
    color: #333;
}

.sidebar nav ul li a:hover {
    color: #f0b90b;
}

.deposit-content {
    background-color: #fff;
    color: #333;
}

.deposit-content h1 {
    color: #a92710;
}

.crypto-options button {
    background-color: #f2f2f2;
    border: 1px solid #909090;
    color: #333;
}

.crypto-options button:hover {
    background-color: #e0e0e0;
}

.deposit-address input {
    background-color: #f8f8f8;
    color: #333;
    border: 1px solid #909090;
}

.deposit-address button {
    background-color: #f0b90b;
    color: #333;
    border: 1px solid #8b8b8b;
}

.history-table th {
    background-color: #f2f2f2;
    color: #333;
}

.history-table td {
    background-color: #fff;
    color: #333;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.faq-category-button {
    color: #ccc;
}

.faq-category-button:hover {
    color: #f0b90b;
}

body.light-theme .faq-category-button {
    color: #333;
}

body.light-theme .faq-category-button:hover {
    color: #a92710; 
}

.share-section {
    display: flex;    
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    color: #aaaaaa;
    gap: 15px;
}

body.light-theme .share-section {
    color: #333;  
}

.commission-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #1e1e1e;
    color: white;
    font-family: Arial, sans-serif;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.search-bar {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.search-bar input[type="date"],
.search-bar input[type="month"] {
    padding: 10px;
    border: 1px solid #555;
    border-radius: 5px;
    background-color: #1e1e1e;
    color: white;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.search-bar input[type="date"]::-webkit-calendar-picker-indicator,
.search-bar input[type="month"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.8;
    cursor: pointer;
}

.search-bar input[type="date"]::-webkit-calendar-picker-indicator:hover,
.search-bar input[type="month"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.search-bar .search-button {
    padding: 10px 20px;
    background-color: #f0b90b;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

.search-bar .search-button:hover {
    background-color: #d6a807;
}

.revenue-section {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-top: 20px;
}

.revenue-block {
    flex: 1;   
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.revenue-block h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #f0b90b;
    min-height: 44px;
}

.revenue-block p {
    margin-bottom: 15px;
    color: #ccc;
}

.revenue-block table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.revenue-block table td {
    padding: 10px;
    border: 1px solid #3d3d3d;
    background-color: #262626;
    color: #fff;
}

.active-invitees {
    margin-top: 20px;
    font-size: 1em;
    color: rgb(167, 21, 21);
    text-align: left;
}

.active-invitees span {
    font-weight: bold;
}

body.light-theme .commission-page {
    background-color: #f9f9f9; 
    color: #333; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
}

body.light-theme .search-bar input[type="date"],
body.light-theme .search-bar input[type="month"] {
    border: 1px solid #ccc;
    background-color: #ffffff;
    color: #333;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
}

body.light-theme .search-bar input[type="date"]::-webkit-calendar-picker-indicator,
body.light-theme .search-bar input[type="month"]::-webkit-calendar-picker-indicator {
    filter: none;
    opacity: 0.7;
    cursor: pointer;
}

body.light-theme .search-bar input[type="date"]::-webkit-calendar-picker-indicator:hover,
body.light-theme .search-bar input[type="month"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
        padding: 10px;
        gap: 15px;
        margin-top: 20px;
    }

    .balance-info,
    .payment-request,
    .revenue-section,
    .payments-history {
        padding: 15px;
    }

    .payment-request {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .payment-request select,
    .payment-request input,
    .payment-button {
        width: 100%;
        min-width: auto;
        margin: 5px 0;
        margin-left: 0 !important;
    }

    .payment-request span {
        text-align: center;
        margin: 5px 0;
    }

    .revenue-section {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .revenue-block {
        padding: 15px;
    }

    .revenue-block h3 {
        font-size: 1.1em;
    }

    .revenue-block p {
        font-size: 0.85em;
    }

    .revenue-block table td {
        padding: 6px;
        font-size: 0.8em;
    }

    .active-invitees {
        font-size: 1em;
        text-align: center;
        padding: 0 10px;
    }

    .payments-history table {
        font-size: 0.85em;
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }

    .payments-history table thead,
    .payments-history table tbody {
        display: table;
        width: 100%;
        table-layout: fixed;
    }

    .payments-history table th,
    .payments-history table td {
        padding: 8px 4px;
        font-size: 0.8em;
        word-break: break-word;
    }

    .payments-history h3 {
        font-size: 1.1em;
        text-align: center;
    }

    .pagination {
        font-size: 0.9em;
    }

    .pagination a {
        padding: 8px 12px;
        margin: 0 3px;
    }
}

@media (max-width: 480px) {
    .faq-container {
        padding: 5px;
        margin-top: 10px;
    }

    .balance-info,
    .payment-request,
    .revenue-section,
    .payments-history {
        padding: 10px;
        margin-bottom: 15px;
    }

    .balance-info p:first-child {
        font-size: 1.1em;
    }

    .revenue-block {
        padding: 10px;
    }

    .revenue-block h3 {
        font-size: 1em;
    }

    .revenue-block table td {
        padding: 4px;
        font-size: 0.75em;
    }

    .payments-history table th,
    .payments-history table td {
        padding: 6px 2px;
        font-size: 0.75em;
    }

    .active-invitees {
        font-size: 0.9em;
    }
}

body.light-theme .search-bar .search-button {
    background-color: #ff954e;
    color: #000;
    border: 1px solid #ccc;
}

body.light-theme .search-bar .search-button:hover {
    background-color: #ffa96f;
}

body.light-theme .revenue-block {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

body.light-theme .revenue-block h3 {
    color: #333;
    min-height: 44px;
}

body.light-theme .revenue-block p {
    color: #666;
}

body.light-theme .revenue-block table td {
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    color: #333;
}

body.light-theme .active-invitees {
    color: #d9534f;
}

body.light-theme .commission-page {
    background-color: #f9f9f9;
    color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

body.light-theme .balance-info {
    /* background-color: #fff; */
    color: #333;
}

body.light-theme .payment-request select,
body.light-theme .payment-request input {
    background-color: #ffffff;
    color: #333;
    border: 1px solid #ccc;
    height: 30px;
    padding-left: 10px;
}

body.light-theme .payment-request .payment-button {
    background-color: #ff954e;
    color: #000;
    border: 1px solid #000000;
}


 .payment-request .payment-button {
    background-color: #e5b600;
    color: rgb(0, 0, 0);
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 30px;
}

 .payment-request input {
    background-color: #404040;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 5px;
    height: 30px;
    padding-left: 10px;
    margin-left: 5px;
    margin-right: 5px;
    box-sizing: border-box; 
}

.payment-request select
 {  
    background-color: #303030;
    color: #bdbdbd;    
    border-radius: 5px;
    height: 30px;
    padding-left: 10px;
    margin-right: 5px;
}

body.light-theme .payment-request .payment-button:hover {
    background-color: #ffa96f;
}

body.light-theme .revenue-block {
    background-color: #fff;
    border: 1px solid #e0e0e0;
}

body.light-theme .revenue-block table td {
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    color: #333;
}

body.light-theme .active-invitees {
    color: #d9534f;
}

body.light-theme .payments-history th {
    background-color: #f1f1f1;
    color: #333;
}

body.light-theme .payments-history td {
    background-color: #fff;
    color: #333;
}

.pagination {
    margin-top: 10px;
 text-align: center;
}

body.light-theme .pagination {
    color: #333;
}

.faq-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.faq-menu li {
    margin-bottom: 10px;
}

.affiliate-table {
    font-size: 12px;
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-weight: 700;
}

.affiliate-table th, 
.affiliate-table td {
    border: 1px solid #a5a5a5;
    padding: 8px;
    text-align: center;
}

body.light-theme .affiliate-table th {
    background-color: #e1e1e1;
    font-weight: bold;
}
.affiliate-table th {
    background-color: #2f2f2f;
    font-weight: bold;
}

.Rules {
    max-width: 1200px;
    margin: 80px auto; 
    padding: 20px;
    box-sizing: border-box; 
}
.Terms {
    line-height: 1.6;
    padding: 20px;
}