* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background-color: #f5f5f5;
    padding-bottom: 60px;
}

.header {
    background: linear-gradient(135deg, #66bb6a 0%, #7cb87e 100%);
    color: white;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 8px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-login, .btn-signup {
    background: white;
    color: #66bb6a;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.date-selector 
{   
    position: relative;
    background: white;
    padding: 10px;
    margin: 20px;
    border-radius:8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.date-selector-socials
{
    position:absolute;
    right:0px;
    top:0px;
    display: flex;
    background-color: #eceff1;
    border-top-right-radius:8px;
    border-bottom-left-radius:5px;
    padding:10px;
    box-shadow: 0 2px 8px rgba(55, 58, 61, 0.08);
}
.fab
{
    color:rgb(50, 142, 203);
    font-size:18px;
}
.date-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #5a6c7d;
    font-size:14px;
    font-weight: 600;
}

.calendar-icon {
    width: 23px;
    height:23px;
    background: #66bb6a;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.dates-container 
{
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 5px 0;
}

.date-card 
{
    min-width:50px;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius:5px;
    padding:5px;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.date-card:hover {
    border-color: #66bb6a;
}

.date-card.active 
{
    background: #66bb6a;
    border-color: #66bb6a;
    color: white;
}

.date-card.active .month 
{
    background: #5aad5e;
}

.date-number 
{
    font-size:16px;
    font-weight: bold;
    margin-bottom: 4px;
}

.month 
{
    font-size: 13px;
    color: #757575;
    background: #f5f5f5;
    padding: 4px;
    border-radius: 4px;
}

.today-label 
{
    font-size: 12px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}


.predictions-section 
{
    margin: 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom:5px;
    background-color:#E7F2EF;
    border:1px solid white;
    border-radius:2px;
    padding:3px;
    font-size:13px;
    font-weight: 400;
    color: #6e7882;
}

.section-header-user-predictions
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom:5px;
    background-color:#f1f0f0;
    border:1px solid #8eb0d7;
    border-radius:2px;
    padding:3px;
    font-size:13px;
    font-weight: 400;
    color: #6e7882;
};

.section-title 
{
    display: flex;
    align-items: center;
    gap: 10px;
   
}

.fire-icon 
{
    font-size: 18px;
}

.hot-badge {
    background: #fff3cd;
    color: #f57c00;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.match-card.official 
{
    background: white;
    border-radius:2px;
    border-top-left-radius:5px;
    border-top-right-radius:30px;
    padding-top:0px;
    padding-bottom:5px;
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.08); */
    margin-bottom:5px;
    border:1px solid #acda9c;
}

.match-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #757575;
    font-size: 13px;
    margin-bottom:5px;
    padding:5px;
    border-top-left-radius:5px;
    border-top-right-radius:5px;
    background-color:#eceff1;
    border:1px solid white;
    padding-top:5px;
    position:relative;
    padding-right: 60px;
    
}

.time-badge {
    display: flex;
    align-items: center;
    gap:3px;
    background: #ffffff;
    padding:2px;
    font-size:10px;
    border-radius:6px;
    position: absolute;
    right:50px;
}
.odds-notification 
{
    position: absolute;
    top: -4px;
    right: 0;
    background: #2196f3;
    color: white;
    width: 27px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 10px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.4);
    z-index: 10;
    animation: pulse 2s infinite;
}

@keyframes pulse 
{
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.odds-badge-header
 {
    background: #2196f3;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: bold;
    margin-left: auto;
}

.clock-icon {
    font-size:11px;
}

.match-title {
    font-size: 14px;
    font-weight:400;
    color: #333;
    margin-bottom:5px;
    text-align: center;
    
}

.match-details 
{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.detail-badge 
{
    padding:2px;
    border-radius: 4px;
    font-size:10px;
    display: flex;
    align-items: center;
    gap:2px;
}

.chats 
{
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
    margin-left:10px;
}

.tips {
    background: #e3f2fd;
    color: #1565c0;
    border: 1px solid #bbdefb;
}

.quality 
{
    background: #FEF9C2;
    color: #b36313;
    border: 1px solid #d4c556;
}

.result 
{
    background: #f1f8e9;
    color: #558b2f;
    border: 1px solid #dcedc8;
}

.match-actions.null 
{
    background: #eee;
    color: grey;
    border: 1px solid silver;
}

.match-actions.Won 
{
    background: #f1f8e9;
    color: #558b2f;
    border: 1px solid #dcedc8;
}

.match-actions.Lost 
{
    background: #fce4ec;
    color: #c2185b;
    border: 1px solid #f8bbd0;
}
.match-actions.Approved 
{
    background: #f1f8e9;
    color: #558b2f;
    border: 1px solid #dcedc8;
}

.match-actions.Rejected 
{
    background: #fce4ec;
    color: #c2185b;
    border: 1px solid #f8bbd0;
}
.match-actions.Pending 
{
    background: #fff3e0;
    color: #f57c00;
    border: 1px solid #e3e5bc;
}


.match-owner 
{
    background: #dbc6dd;
    color: #7f2d86;
    border: 1px solid #cd61d7;

}

.match-actions 
{
    background-color:#f1f0f0;
    border:1px solid rgb(224, 222, 222);
    color:rgb(83, 81, 81);

}

.checkmark 
{
    color: #4caf50;
}
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e0e0e0;
    padding: 12px;
    display: flex;
    justify-content: space-around;
}

.nav-item {
    text-align: center;
    color: #757575;
    font-size: 12px;
    cursor: pointer;
    transition: color 0.3s;
}

.nav-item:hover {
    color: #66bb6a;
}

.nav-item.active {
    color: #66bb6a;
}

.nav-item.active .nav-icon {
    transform: scale(1.1);
}

.nav-icon {
    font-size: 24px;
    margin-bottom: 4px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active 
{
    display: flex;
}
.modal-header 
{
    display: flex;                /* make parent flex */
    align-items: center;          /* vertical alignment */
    justify-content: space-between; /* left & right spacing */
    font-size: 17px;
    font-weight:500;
    color: #2c362a;
    margin-bottom: 15px;
    padding: 10px;
    background-color: rgb(129, 235, 129);
}

.modal-content
 {
    background: white;
    /* padding: 20px; */
    padding-left:0px;
    padding-right:0px;
    /* border-radius: 16px; */
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: slideUp 0.3s ease;
}
.modal-content-body
{
    padding-top:10px;
    padding:20px;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.form-group 
{
    margin-bottom:10px;
    
}
.add-prediction-form-class
{
    /* display:none; */
}
.add-prediction-eligibility
{
    /* display:none; */
}
.add-prediction-form-class.active
{
    display:block;
}
.add-prediction-eligibility.active
{
    display:block;
}

.form-label 
{
    display: block;
    font-size: 13px;
    font-weight: 300;
    color: #555;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 13px;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #66bb6a;
}
.form-row-flex {
    display: flex !important;
    gap: 12px;
    width: 100%;
}

.form-row-flex .form-group {
    flex: 1 1 0;
    min-width: 0;
}

.time-row
{
    display: flex;
    justify-content: space-evenly;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: #66bb6a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover 
{
    background: #5aad5e;
}
a:active
{
    text-decoration: none;
}
a:visited
{
    text-decoration:none;
}
.btn-submit-blue 
{
    width: 100%;
    padding: 14px;
    background: #31bdfe;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 450;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration:none;
}

.btn-submit-blue:hover 
{
    background: #28a3dd;
}


.btn-close {
    width: 100%;
    padding: 12px;
    background: #f5f5f5;
    color: #666;
    border:1px solid rgba(235, 229, 229, 0.805);
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 10px;
}



.error-message 
{
    
    background: #f1d4d4;
    color: #d64444;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
    display: none;
}

.error-message.active 
{
    display: block;
}

.sub-error-message 
{
    color: #d32f2f;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.sub-error-message.active {
    display: block;
}

.success-message {
    background: #d1f4d3;
    color: #156019;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
    display: none;
}

.success-message.active {
    display: block;
}

.user-info {
    display: none;
    align-items: center;
    gap: 10px;
    color: white;
    cursor: pointer;
}

.user-info.active {
    display: flex;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: white;
    color: #66bb6a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.btn-wallet {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
}

.chat-modal 
{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.chat-modal.active {
    display: flex;
}

.chat-content {
    background: white;
    width: 95%;
    max-width: 500px;
    height: 80vh;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: slideUp 0.3s ease;
}

.chat-header {
    background: linear-gradient(135deg, #66bb6a 0%, #7cb87e 100%);
    color: white;
    padding: 16px 20px;
    border-radius: 3px 3px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-title {
    font-size: 16px;
    font-weight: 600;
}

.chat-subtitle {
    font-size: 12px;
    opacity: 0.9;
    margin-top: 2px;
    
}

.btn-close-chat {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-messages 
{
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f5f5f5;
}

.message 
{
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

.message-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #66bb6a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
}

.message-username {
    font-weight: 500;
    font-size: 13px;
    color: #333;
}

.message-time {
    font-size: 11px;
    color: #999;
    margin-left: auto;
}

.message-bubble 
{
    background: white;
    padding: 12px 16px;
    border-radius:8px;
    margin-left: 40px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    word-wrap: break-word;
}

.message.own .message-avatar 
{
    background: #2196f3;
}

.message.own .message-bubble 
{
    background: #e3f2fd;
    border: 1px solid #bbdefb;
}

.message.default .message-avatar 
{
    background: #f5f5f5;  
}
.message.default .message-bubble 
{
    background: #f5f5f5;
    border: 1px solid #f5f5f5;
    text-align: center;
    padding: 40px 20px;
    color: #999;
}


.chat-input-container {
    padding: 16px;
    background: white;
    border-top: 1px solid #e0e0e0;
    border-radius: 0 0 16px 16px;
}

.chat-input-wrapper {
    display: flex;
    gap: 10px;
}

.chat-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 24px;
    font-size: 14px;
    resize: none;
    outline: none;
}

.chat-input:focus {
    border-color: #66bb6a;
}

.btn-send {
    background: #66bb6a;
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background 0.3s;
}

.btn-send:hover {
    background: #5aad5e;
}

.btn-send:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.empty-chat {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.empty-chat-icon 
{
    font-size: 48px;
    margin-bottom: 16px;
}

.user-predictions-container 
{
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width:none;
    margin-bottom:40px;
    border-bottom:solid 2px #abb7c5;
    
}

.prediction-card 
{
    background: white;
    border-radius:2px;
    padding:10px;
    transition: transform 0.3s, box-shadow 0.3s;
    border:solid 1px #8eb0d7;
}

.prediction-card:hover 
{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}


.prediction-date 
{
    font-size: 11px;
    color: #999;
}

.prediction-match {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    margin-bottom: 4px;
    display: flex;
    justify-content: space-between;
}

.prediction-league {
    font-size: 12px;
    color: #757575;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
}


.odds-badge 
{
    background: #a8ace9;
    color: #4a50a5;
    padding: 2px 3px;
    border-radius:5px;
    font-weight: 400;
    font-size: 12px;
}


.like-btn {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    transition: all 0.3s;
}

.like-btn:hover {
    background: #e8f5e9;
    border-color: #66bb6a;
    color: #2e7d32;
}

.like-btn.liked {
    background: #e8f5e9;
    border-color: #66bb6a;
    color: #2e7d32;
}

.loading-predictions {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.loading-spinner {
    font-size: 48px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.star-icon {
    font-size:18px;
}

.see-all {
    color: #66bb6a;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.see-all:hover {
    text-decoration: underline;
}

.profile-header {
    text-align: center;
    margin-bottom: 24px;
}

.profile-avatar-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #66bb6a 0%, #7cb87e 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(102, 187, 106, 0.3);
}

.profile-info {
    margin-bottom: 8px;
}

.profile-username {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 0 0 4px 0;
}

.profile-email {
    font-size: 14px;
    color: #757575;
    margin: 0;
}

.profile-stats {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.stat-box {
    flex: 1;
    background: #f5f5f5;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #66bb6a;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: #757575;
}

.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.btn-profile-action {
    width: 100%;
    padding: 12px;
    background: #66bb6a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s;
}

.btn-profile-action:hover {
    background: #5aad5e;
}

.form-range 
{
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e0e0e0;
    outline: none;
    -webkit-appearance: none;
}

.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background:#6e726e;
    cursor: pointer;
}

.form-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #66bb6a;
    cursor: pointer;
    border: none;
}

.confidence-display {
    text-align: center;
    margin-top: 8px;
    font-size:15px;
    font-weight: bold;
    color:  #8d938d;
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.vip-modal-content 
{
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    
}

.vip-header 
{
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    display: flex;                /* make parent flex */
    align-items: center;          /* vertical alignment */
    justify-content: space-between; /* left & right spacing */
    font-size: 17px;
    font-weight:500;
    color: #2c362a;
    margin-bottom:3px;
    padding: 10px;
    background-color: rgb(129, 235, 129);
}

.vip-icon {
    font-size: 32px;
}

.vip-title {
    flex: 1;
    font-size:17px;
    font-weight: bold;
    color: #333;
    
}

.vip-content 
{
    max-width: 600px;
    max-height:400px;
    display: flex;
    flex-direction: column;
    scrollbar-width:none;
    overflow-y: auto;
    
}

.vip-access-card 
{
    background: linear-gradient(135deg, #018790 0%, #005461 100%);
    color: white;
    padding:5px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
}

.vip-access-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 12px;
}

.vip-access-description {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.vip-price {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 8px;
}

.vip-balance {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.btn-purchase-vip {
    width:auto;
    padding: 7px;
    background: white;
    color: #667eea;
    border: none;
    border-radius:4px;
    font-size:14px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-purchase-vip:hover {
    transform: scale(1.05);
}

.btn-purchase-vip:disabled {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
}

.vip-prediction-card 
{
    background: white;
    border: 2px solid #ffd700;
    border-radius: 12px;
    padding: 16px;
    padding-top:8px;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
    position: relative;
}
.watermark {
    position: absolute;
    top:5px;
    right: 10px;
    width: 70px;
    height: 70px;
    background-image: url('../images/logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.2;
    transform: rotate(40deg);
    z-index: 1000;
}

.vip-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 8px;
}

.wallet-balance-card {
    background: linear-gradient(135deg, #66bb6a 0%, #7cb87e 100%);
    color: white;
    padding:10px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
}

.balance-label {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.balance-amount {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 16px;
}

.wallet-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.3);
}

.wallet-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
}

.wallet-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.btn-wallet-action {
    flex: 1;
    padding: 11px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight:300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.3s;
}

.btn-wallet-action:hover {
    transform: translateY(-2px);
}

.btn-wallet-action.deposit {
    background: #66bb6a;
    color: white;
}

.btn-wallet-action.withdraw {
    background: #f57c00;
    color: white;
}

.transactions-section {
    margin-top: 24px;
}

.transactions-section h3 {
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
}

.transactions-list 
{
    max-height: 150px;
    overflow-y: auto;
}

.transaction-item.withdrawal 
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:6px;
    background: #f5f5f5;
    border-left:solid 2px red;
    border-top-left-radius:0px;
    border-bottom-left-radius:0px;
    margin-bottom: 8px;
}
.transaction-item.deposit 
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:6px;
    background: #f5f5f5;
    border-left:solid 2px rgb(5, 162, 78);
    border-top-left-radius:0px;
    border-bottom-left-radius:0px;
    margin-bottom: 8px;
}
.transaction-item.vip_access 
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:8px;
    background: #f5f5f5;
    border-left:solid 2px #ffd700;
    border-top-left-radius:0px;
    border-bottom-left-radius:0px;
    margin-bottom: 8px;
}
.transaction-item.vip_insurance 
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:8px;
    background: #f5f5f5;
    border-left:solid 2px rgb(29, 118, 213);
    border-top-left-radius:0px;
    border-bottom-left-radius:0px;
    margin-bottom: 8px;
}

.transaction-info
{
    flex: 1;
}

.transaction-type 
{
    font-size: 13px;
    color: #333;
    margin-bottom: 4px;
}

.transaction-date 
{
    font-size: 11px;
    color: #757575;
}
.transaction-id 
{
    font-size: 11px;
    color: #757575;;
}
.transaction-status.Successful
{
    font-size: 11px;
    color: #16bd1e;
}
.transaction-status.Pending
{
    font-size: 11px;
    color: #d86e03;
}
.transaction-status.Failed
{
    font-size: 11px;
    color: #c32206;
}

.transaction-amount {
    font-size: 14px;
    font-weight: bold;
}

.transaction-amount.deposit,
.transaction-amount.refund 
{
    color: #16bd1e;
}

.transaction-amount.withdrawal,
.transaction-amount.vip_access 
{
    color: #f52900ee;
}

.quick-amounts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.quick-amount-btn {
    padding: 10px;
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.quick-amount-btn:hover {
    background: #e8f5e9;
    border-color: #66bb6a;
    color: #2e7d32;
}

.withdraw-method-section 
{
    margin:5px 0;
}

.section-title-small 
{
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.section-title-small::before {
    content: "💳";
    font-size: 18px;
}

.bank-details-card {
    background: #eee;
    border-radius:8px;
    padding: 15px;
    margin-bottom: 12px;
    /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); */
    position: relative;
    overflow: hidden;
    display:none;
}

.bank-details-card::before 
{
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: rgba(183, 233, 44, 0.05);
    border-radius: 50%;
}

.bank-details-card::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.bank-detail-item 
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.bank-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-label 
{
    font-size: 13px;
    color: rgba(53, 51, 51, 0.7);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-value {
    font-size: 14px;
    color: #292828;
    font-weight: 350;
    letter-spacing: 0.8px;
}
.add-bank-info-message
{
    color:rgb(128, 128, 128);
    font-size:13px;
}
.current-balance-info-message
{
    color:rgb(4, 146, 6);
    font-size:12px;
}

.no-bank-notify
{
    display:none;
}

/* HTML: <div class="loader"></div> */
.loader-wrapper {
    position: fixed;           /* center on screen */
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;                 /* space between loader and text */
    background: rgba(255,255,255,0.8); /* optional overlay */
    backdrop-filter: blur(2px);
    display:none;
    
  }
  
  .loader-text 
  {
    font-size: 16px;
    color: #1f1e1e;
    font-weight: 300;
    font-family: Arial, sans-serif;
  }
  
  .loader 
  {
    width: 40px;
    aspect-ratio: 1;
    --c: linear-gradient(#000 0 0);
    --r1: radial-gradient(farthest-side at bottom,#000 93%,#0000);
    --r2: radial-gradient(farthest-side at top,#000 93%,#0000);
    background: 
      var(--c) ,var(--r1),var(--r2),
      var(--c) ,var(--r1),var(--r2),
      var(--c) ,var(--r1),var(--r2);
    background-repeat: no-repeat;
    animation: l2 1s infinite alternate;
  }
  
  @keyframes l2 
  {
    0%,25% {
      background-size: 8px 0,8px 4px,8px 4px,8px 0,8px 4px,8px 4px,8px 0,8px 4px,8px 4px;
      background-position: 0 50%,0 calc(50% - 2px),0 calc(50% + 2px),50% 50%,50% calc(50% - 2px),50% calc(50% + 2px),100% 50%,100% calc(50% - 2px),100% calc(50% + 2px);
   }
   50% {
      background-size: 8px 100%,8px 4px,8px 4px,8px 0,8px 4px,8px 4px,8px 0,8px 4px,8px 4px;
      background-position: 0 50%,0 calc(0% - 2px),0 calc(100% + 2px),50% 50%,50% calc(50% - 2px),50% calc(50% + 2px),100% 50%,100% calc(50% - 2px),100% calc(50% + 2px);
   }
   75% {
      background-size: 8px 100%,8px 4px,8px 4px,8px 100%,8px 4px,8px 4px,8px 0,8px 4px,8px 4px;
      background-position: 0 50%,0 calc(0% - 2px),0 calc(100% + 2px),50% 50%,50% calc(0% - 2px),50% calc(100% + 2px),100% 50%,100% calc(50% - 2px),100% calc(50% + 2px);
   }
   95%,100% {
      background-size: 8px 100%,8px 4px, 8px 4px,8px 100%,8px 4px,8px 4px,8px 100%,8px 4px,8px 4px;
      background-position: 0 50%,0 calc(0% - 2px),0 calc(100% + 2px),50% 50%,50% calc(0% - 2px),50% calc(100% + 2px),100% 50%,100% calc(0% - 2px),100% calc(100% + 2px);
   }
  }
  /*VIRTUAL ACCOUNT NUMBER NEWD DESIGNS*/
 .get-virtual
 {
    display:none;
 }
.account-info 
{
    display:none;
    background: white;
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid rgba(235, 229, 229, 0.805);
    backdrop-filter: blur(10px);
    /* box-shadow: 
    0 2px 5px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 215, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1); */
}

.info-row 
{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom:8px;
    padding: 13px;
    border-radius: 6px;
    border: 1px solid #6D94C5;
    transition: all 0.3s ease;
    background: #CBDCEB;
}

.info-row:hover 
{
    background: #F5F5F0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px #9fbbdc;
}

.info-row:last-child 
{
    margin-bottom: 0;
}

.label 
{
    color: #062e45;
    font-size: 12px;
    font-weight: 400;
    min-width: 120px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.icon 
{
    color: #010f16;
    margin: 0 10px;
    font-size: 13px;
    transition: transform 0.3s ease;
}

.info-row:hover .icon {
    transform: translateX(3px);
}

.value {
    color: #062e45;
    font-size: 13px;
    font-weight: 500;
    flex: 1;
    text-align: right;
}

.small-note 
{
    font-size: 13px;
    color: #666;
    margin: 10px 0;
}

.small-note ul {
    list-style: none; /* remove default bullets */
    padding: 10px 12px;
    margin: 0;
    background: #f8f9fa;
    border-left: 3px solid #4caf50;
    border-radius: 4px;
}

.small-note ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.small-note ul li:last-child 
{
    margin-bottom: 0;
}

/* Custom bullet */
.small-note ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #4caf50;
    font-size: 12px;
}


.copy-account-btn {
    background-color:#476EAE;
    color: whitesmoke;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    margin-left:10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width:auto;
}

.copy-account-btn:hover
 {
    /* background: linear-gradient(45deg, #ffed4e, #ffd700); */
    transform: scale(1.05);
    box-shadow: 0 3px 7px#4882e1;
}

.copy-account-btn:active {
    transform: scale(0.95);
}

.paid-btn {
    width: 100%;
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.paid-btn:hover {
    background: linear-gradient(45deg, #20c997, #28a745);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.paid-btn:active 
{
    transform: translateY(0);
}

.tooltip 
{
    position: relative;
    display: inline-block;
    cursor: pointer;
  }
  
  .tooltiptext 
  {
    visibility: hidden;
    width: 130px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    bottom:30px;
    padding:4px;
    right:10px;
    z-index: 1;
  }
  
  .tooltip:hover .tooltiptext 
  {
    visibility: visible;
  }

 
  



