/* Glassmorphic Dark Gold Popup Styles */
.popup_wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: none;
}

body.popup_opened {
    overflow: hidden;
}

.popup_wrap.confirm_box {
    display: block;
}

.popup_row {
    display: table;
    width: 100%;
    height: 100%;
    margin: 0;
}

.popup_col {
    display: table-cell;
    vertical-align: middle;
}

.popup_wrap .pop {
    width: 90%;
    max-width: 450px;
    margin: 0 auto;
    background: rgba(28, 30, 36, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    color: #ffffff;
    display: block;
}

.popup_wrap .pop .popup_content {
    float: left;
    width: 100%;
    text-align: center;
}

.popup_wrap .pop .popup_content h5 {
    margin: 0 0 16px 0;
    font-size: 20px;
    color: var(--gold);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
    font-weight: 600;
}

.popup_wrap .pop .popup_content p {
    font-size: 15px;
    color: #e2e8f0;
    line-height: 1.6;
    margin: 16px 0;
    text-align: center;
}

.popup_wrap .confirm_btn_wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 24px;
    gap: 12px;
}

.popup_wrap .confirm_btn_wrap .btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    text-align: center;
    border: none;
}

.popup_wrap .confirm_btn_wrap .btn#button_cancel {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.popup_wrap .confirm_btn_wrap .btn#button_cancel:hover {
    background: rgba(255, 255, 255, 0.15);
}

.popup_wrap .confirm_btn_wrap .btn#button_confirm {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #121318;
}

.popup_wrap .confirm_btn_wrap .btn#button_confirm:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 15px rgba(240, 196, 90, 0.4);
}


.todays_result {
    display: inline-block;
    margin-left: 5px;
    font-size: 10px;
    padding: 5px 10px;
    background: var(--primary);
    border-radius: 20px;
    line-height: 10px;
    vertical-align: text-bottom;
}

.pagination span,
.pagination a {
    flex: 1;
    padding: 9px 5px;
    width: 34px;
    height: 35px;
    margin-top: 17px;
    font-size: 12px;
    line-height: 20px;
    background: #064577;
    color: #fff;
    margin-right: 5px;
    border-radius: 3px;
}

.pagination a:hover,
.pagination .selected {
    background: #FFF;
    color: #000000;
}

.wallet_disabled .wallet_balance,
.wallet_disabled .wallet_box:last-child {
    display: none;
}

.wallet_disabled .balance .balance_icon {
    padding: 0px;
}

.wallet_disabled .header .balance {
    margin-top: 7px;
}

.wallet_disabled .wallet_box {
    width: 100%;
}

/* Interactive cursor for Email/Mobile tabs */
.main_wrap .tab {
    cursor: pointer;
}

/* Fix header and admin bar alignment */
.header {
    top: 0;
    left: 0;
}
.admin-bar .header {
    top: 32px !important;
}
#wpadminbar {
    position: fixed !important;
    top: 0 !important;
}
@media screen and (max-width: 782px) {
    .admin-bar .header {
        top: 46px !important;
    }
}