/* Winge Plugin Styles - Fully Responsive */

/* Reset and Base Styles */
.winge-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Room ID themed modal (gradient header, rounded, deep shadow) */
.winge-modal.roomid-theme .winge-modal-content {
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    max-height: 80vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

.winge-modal.roomid-theme .winge-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 15px 15px 0 0;
}

.winge-modal.roomid-theme .winge-modal-title {
    margin: 0;
    font-size: 18px;
    color: #fff;
}

.winge-modal.roomid-theme .winge-modal-close {
    background: rgba(255,255,255,0.2);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 18px;
}

.winge-modal.roomid-theme .winge-modal-body {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.winge-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
}

/* Wallet Styles */
.winge-wallet-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.winge-wallet-header {
    margin-bottom: 20px;
}

.winge-wallet-balance {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.winge-wallet-label {
    font-size: 16px;
    opacity: 0.9;
}

.winge-wallet-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.winge-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 150px;
}

.winge-btn-primary {
    background: #28a745;
    color: white;
}

.winge-btn-primary:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.winge-btn-secondary {
    background: #dc3545;
    color: white;
}

.winge-btn-secondary:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

.winge-form {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.winge-form h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #495057;
    text-align: center;
    font-size: 24px;
}

.winge-form-group {
    margin-bottom: 20px;
}

.winge-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #495057;
}

.winge-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.winge-form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.winge-wallet-disabled-message {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    color: #6c757d;
    font-style: italic;
}

.winge-wallet-disabled-message p {
    margin: 0;
    font-size: 16px;
}

/* Wallet History */
.winge-wallet-history {
    margin-top: 30px;
}

.winge-wallet-history h3 {
    margin-bottom: 20px;
    color: #495057;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.winge-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.winge-table th,
.winge-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.winge-table th {
    background: #f8f9fa;
    font-weight: bold;
    color: #495057;
}

.winge-table tr:hover {
    background: #f8f9fa;
}

/* Responsive table */
@media (max-width: 768px) {
    .winge-wallet-balance {
        font-size: 36px;
    }
    
    .winge-wallet-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .winge-btn {
        min-width: 200px;
    }
    
    .winge-table-responsive {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0;
        padding: 0;
    }
    
    .winge-table-responsive .winge-table {
        min-width: 600px;
        margin: 0;
    }
    
    .winge-table {
        border-radius: 0;
    }
    
    .winge-table th,
    .winge-table td {
        padding: 8px 10px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    /* Mobile table wrapper */
    .winge-wallet-history {
        margin-left: -10px;
        margin-right: -10px;
        padding: 0 10px;
    }
    
    /* Container padding adjustment for mobile */
    .winge-container {
        padding: 5px;
        margin: 0;
    }
}

/* Enhanced Chat Styles */
.winge-chat-input-wrapper {
    position: relative;
}

.winge-chat-input-group {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding: 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.winge-chat-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.winge-emoji-btn:hover {
    background: #f0f0f0;
    transform: scale(1.1);
}

.winge-file-btn:hover {
    background: #e3f2fd;
    color: #1976d2;
}

.winge-send-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.winge-send-btn:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: scale(1.05);
}

.winge-chat-input-field {
    flex: 1;
    border: none;
    outline: none;
    resize: none;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4;
    padding: 8px 12px;
    border-radius: 18px;
    background: #f8f9fa;
    min-height: 20px;
    max-height: 120px;
}

.winge-btn-danger:hover {
    background: #c82333;
    box-shadow: 0 6px 15px rgba(220, 53, 69, 0.3);
}

/* Join/Leave Button Visibility Control */
.winge-join-room[style*="display: none"],
.winge-leave-room[style*="display: none"] {
    display: none !important;
}

.winge-room-card .winge-join-room.hidden,
.winge-room-card .winge-leave-room.hidden {
    display: none !important;
}

/* Emoji Picker */
.winge-emoji-picker {
    position: absolute;
    bottom: 100%;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    max-width: 300px;
    margin-bottom: 8px;
}

.emoji-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 4px;
    max-height: 200px;
    overflow-y: auto;
}

.emoji-item {
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    text-align: center;
    font-size: 18px;
    transition: background 0.2s ease;
}

.emoji-item:hover {
    background: #f0f0f0;
    transform: scale(1.2);
}

/* File Preview */
.winge-file-preview {
    margin-top: 12px;
    padding: 12px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

.file-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-weight: bold;
    color: #495057;
}

.clear-files-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.clear-files-btn:hover {
    background: #c82333;
}

.file-preview-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.file-preview-item {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    max-width: 100px;
    background: white;
}

.file-preview-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.file-preview-item .file-info {
    padding: 4px;
    font-size: 10px;
    text-align: center;
    background: #f8f9fa;
}

.file-preview-item .remove-file {
    position: absolute;
    top: 2px;
    right: 2px;
    background: rgba(220, 53, 69, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Admin Chat Styles */
.admin-chat-input-wrapper {
    position: relative;
}

.admin-chat-input-group {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding: 10px;
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 8px;
}

.admin-emoji-btn, .admin-file-btn {
    background: #f6f7f7;
    border: 1px solid #ddd;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.admin-emoji-btn:hover, .admin-file-btn:hover {
    background: #e9ecef;
}

.admin-send-btn {
    display: flex;
    align-items: center;
    gap: 4px;
}

#admin-message-input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px;
    resize: vertical;
    min-height: 40px;
}

/* Admin Emoji Picker */
.admin-emoji-picker {
    position: absolute;
    bottom: 100%;
    left: 0;
    background: white;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    max-width: 280px;
    margin-bottom: 5px;
}

.admin-emoji-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 2px;
    max-height: 150px;
    overflow-y: auto;
}

.admin-emoji-item {
    cursor: pointer;
    padding: 4px;
    border-radius: 3px;
    text-align: center;
    font-size: 16px;
    transition: background 0.2s ease;
}

.admin-emoji-item:hover {
    background: #f0f0f0;
}

/* Admin File Preview */
.admin-file-preview {
    margin-top: 10px;
    padding: 10px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.admin-file-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.admin-clear-files-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 4px 8px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 11px;
}

.admin-file-preview-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Message Bubbles Enhancement */
.chat-message {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-end;
}

.chat-message.sent {
    justify-content: flex-end;
}

.message-bubble {
    max-width: 70%;
    padding: 12px 16px;
    border-radius: 18px;
    word-wrap: break-word;
    position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.chat-message.received .message-bubble {
    background: #e4e6ea;
    color: #000;
    border-bottom-left-radius: 4px;
}

.chat-message.sent .message-bubble {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom-right-radius: 4px;
}

.message-time {
    font-size: 11px;
    opacity: 0.7;
    margin-top: 4px;
    text-align: right;
}

.chat-message.received .message-time {
    text-align: left;
}

/* File Messages */
.message-file {
    margin-top: 8px;
}

.message-file img {
    max-width: 200px;
    border-radius: 8px;
    cursor: pointer;
}

.message-file video {
    max-width: 200px;
    border-radius: 8px;
}

.file-download-link {
    display: inline-block;
    padding: 8px 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    margin-top: 4px;
}

.file-download-link:hover {
    background: rgba(255,255,255,0.3);
}

/* Transaction Status Badges */
.winge-status-processed {
    background: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.winge-status-free {
    background: #28a745;
    color: white;
}

.winge-status-full {
    background: #dc3545;
    color: white;
}

.winge-status-paid {
    background: #ffc107;
    color: #212529;
}

.winge-status-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
}

/* Transaction Table Enhancements */
.winge-table th:nth-child(8) {
    min-width: 120px; /* Note column */
}

.winge-table td[data-label="Note"] {
    max-width: 150px;
    word-wrap: break-word;
    font-size: 12px;
}

.winge-table td[data-label="Actions"] {
    text-align: center;
}

/* Mobile responsive for transaction table */
@media (max-width: 768px) {
    .winge-table-responsive {
        font-size: 12px;
        margin: 0 -10px;
        width: calc(100% + 20px);
    }
    
    .winge-table td[data-label="Note"] {
        max-width: 100px;
    }
    
    .winge-status-badge {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    /* Mobile highlighting for important columns */
    .winge-table td[data-label="ID"] {
        background: #e3f2fd;
        font-weight: bold;
        color: #1976d2;
    }
    
    .winge-table td[data-label="Type"] {
        font-weight: bold;
    }
    
    .winge-table td[data-label="Type"]:contains("Add") {
        background: #e8f5e8;
        color: #2e7d32;
    }
    
    .winge-table td[data-label="Type"]:contains("Withdraw") {
        background: #fff3e0;
        color: #f57c00;
    }
    
    .winge-table td[data-label="Number"] {
        background: #f3e5f5;
        color: #7b1fa2;
        font-weight: bold;
    }
    
    .winge-table td[data-label="Note"] {
        background: #fff8e1;
        color: #f57f17;
        font-style: italic;
        border-left: 3px solid #ffc107;
    }
    
    /* Dynamic mobile highlighting classes */
    .mobile-highlight-add {
        background: #e8f5e8 !important;
        color: #2e7d32 !important;
        font-weight: bold;
        border-left: 4px solid #4caf50;
        padding-left: 12px !important;
    }
    
    .mobile-highlight-withdraw {
        background: #fff3e0 !important;
        color: #f57c00 !important;
        font-weight: bold;
        border-left: 4px solid #ff9800;
        padding-left: 12px !important;
    }
    
    .mobile-highlight-note {
        background: #fff8e1 !important;
        color: #f57f17 !important;
        font-style: italic;
        border-left: 4px solid #ffc107;
        padding-left: 12px !important;
        font-weight: 500;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .winge-container {
        padding: 2px;
    }
    
    .winge-wallet-history {
        margin-left: -2px;
        margin-right: -2px;
        padding: 0 2px;
    }
    
    .winge-table-responsive {
        margin: 0 -2px;
        width: calc(100% + 4px);
    }
    
    .winge-table th,
    .winge-table td {
        padding: 6px 8px;
        font-size: 11px;
    }
}

/* Responsive Design */
@media (max-width: 468px) {
    .winge-container {
        padding: 8px;
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .winge-container {
        padding: 5px;
        font-size: 13px;
    }
}

@media (max-width: 320px) {
    .winge-container {
        padding: 3px;
        font-size: 12px;
    }
}

/* Room Cards Layout */
.winge-rooms-grid {
    display: grid;
    gap: 20px;
    margin: 20px 0;
    width: 100%;
    box-sizing: border-box;
}

/* Mobile: 1 room per row */
@media (max-width: 767px) {
    .winge-rooms-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
        margin: 15px 0;
    }
}

/* Tablet: 2 rooms per row */
@media (min-width: 768px) and (max-width: 1023px) {
    .winge-rooms-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 18px;
    }
}

/* Desktop: 3 rooms per row */
@media (min-width: 1024px) {
    .winge-rooms-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px;
    }
}

/* Room Card Styles */
.winge-room-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.winge-room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.winge-room-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    position: relative;
}

/* Ensure the image fits within the fixed-height container and doesn't push content */
.winge-room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 468px) {
    .winge-room-image {
        height: 120px;
        font-size: 20px;
    }
}

.winge-room-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

@media (max-width: 468px) {
    .winge-room-content {
        padding: 12px;
    }
}

.winge-room-title {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.3;
}

@media (max-width: 468px) {
    .winge-room-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
}

.winge-room-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
}

@media (max-width: 468px) {
    .winge-room-info {
        font-size: 13px;
        gap: 6px;
        margin-bottom: 10px;
    }
}

.winge-room-info-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.winge-room-info-item .emoji {
    font-size: 16px;
}

@media (max-width: 468px) {
    .winge-room-info-item .emoji {
        font-size: 14px;
    }
}

.winge-room-rewards {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 13px;
}

@media (max-width: 468px) {
    .winge-room-rewards {
        padding: 8px;
        margin-bottom: 12px;
        font-size: 12px;
    }
}

.winge-room-rewards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    text-align: center;
}

/* Tablet: 2 rewards per row */
@media (min-width: 401px) and (max-width: 1023px) {
    .winge-room-rewards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .winge-room-rewards-grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}

.winge-reward-item {
    background: white;
    padding: 8px 5px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

@media (max-width: 468px) {
    .winge-reward-item {
        padding: 6px 4px;
    }
}

.winge-room-actions {
    display: flex !important;
    gap: 10px !important;
    margin-top: auto !important;
    width: 100% !important;
    flex-wrap: wrap;
}

@media (max-width: 468px) {
    .winge-room-actions {
        gap: 8px !important;
        flex-direction: column !important;
    }
}

.winge-room-card .winge-btn,
.winge-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex: 1;
    box-sizing: border-box !important;
    white-space: nowrap;
    min-width: 0;
    max-width: 100%;
}

@media (max-width: 468px) {
    .winge-btn {
        padding: 12px 16px;
        font-size: 13px;
    }
}

.winge-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.winge-btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
}

.winge-btn-secondary {
    background: #6c757d;
    color: white;
}

.winge-btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.winge-btn-success {
    background: #28a745;
    color: white;
}

.winge-btn-danger {
    background: #dc3545;
    color: white;
}

.winge-btn-warning {
    background: #ffc107;
    color: #212529;
}

.winge-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Status Badges */
.winge-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.winge-status-free {
    background: #d4edda;
    color: #155724;
}

.winge-status-paid {
    background: #fff3cd;
    color: #856404;
}

.winge-status-full {
    background: #f8d7da;
    color: #721c24;
}

.winge-status-running {
    background: #d1ecf1;
    color: #0c5460;
}

/* Countdown Timer */
.winge-countdown {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
    color: #e74c3c;
    font-family: 'Courier New', monospace;
}

/* Wallet Styles */
.winge-modal-content {
    background: white;
    border-radius: 12px;
    /* Keep modal width between 278px and 400px, centered */
    width: clamp(278px, 95vw, 400px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    overflow: hidden;
}

.winge-wallet-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
}

.winge-wallet-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    text-align: center;
}

@media (max-width: 468px) {
    .winge-wallet-header {
        padding: 15px;
    }
}

.winge-wallet-balance {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
}

@media (max-width: 468px) {
    .winge-wallet-balance {
        font-size: 28px;
    }
}

.winge-wallet-label {
    font-size: 14px;
    opacity: 0.9;
}

.winge-wallet-actions {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 468px) {
    .winge-wallet-actions {
        padding: 15px;
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* Forms */
.winge-form {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

@media (max-width: 468px) {
    .winge-form {
        padding: 15px;
    }
}

.winge-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #495057;
}

.winge-form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 468px) {
    .winge-form-control {
        padding: 12px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

.winge-form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Tables */
.winge-table-container {
    overflow-x: auto;
    margin: 20px 0;
}

.winge-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.winge-table th,
.winge-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

@media (max-width: 468px) {
    .winge-table th,
    .winge-table td {
        padding: 8px 6px;
        font-size: 12px;
    }
}

.winge-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #495057;
}

.winge-table tr:hover {
    background: #f8f9fa;
}

/* Responsive Table for Mobile */
@media (max-width: 600px) {
    .winge-table-responsive {
        display: block;
    }
    
    .winge-table-responsive thead {
        display: none;
    }
    
    .winge-table-responsive tr {
        display: block;
        border: 1px solid #e9ecef;
        margin-bottom: 10px;
        border-radius: 8px;
        background: white;
    }
    
    .winge-table-responsive td {
        display: block;
        text-align: right;
        padding: 8px 12px;
        border: none;
        border-bottom: 1px solid #f1f3f4;
    }
    
    .winge-table-responsive td:before {
        content: attr(data-label) ": ";
        float: left;
        font-weight: 600;
        color: #495057;
    }
}

/* Notifications */
.winge-notifications-container {
    max-height: 500px;
    overflow-y: auto;
}

/* Mobile responsive improvements */
@media (max-width: 768px) {
    .winge-notifications-container {
        max-height: none;
        overflow: visible;
        padding: 0 10px;
    }
    
    .winge-notification-item {
        padding: 16px;
        margin-bottom: 12px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        background: white;
        border: 1px solid #e9ecef;
    }
    
    .winge-notification-item:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transform: translateY(-2px);
        transition: all 0.3s ease;
    }
    
    .winge-notification-item.unread {
        background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
        border-left: 4px solid #2196f3;
        box-shadow: 0 4px 12px rgba(33, 150, 243, 0.2);
    }
    
    .winge-notification-icon {
        font-size: 24px;
        flex-shrink: 0;
        margin-right: 12px;
    }
    
    .winge-notification-content {
        flex: 1;
        min-width: 0;
    }
    
    .winge-notification-title {
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 6px;
        font-size: 16px;
        line-height: 1.3;
    }
    
    .winge-notification-message {
        color: #6c757d;
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 8px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .winge-notification-time {
        font-size: 12px;
        color: #adb5bd;
        font-weight: 500;
        background: #f8f9fa;
        padding: 4px 8px;
        border-radius: 12px;
        display: inline-block;
    }
}

.winge-notification-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    background: white;
    transition: background 0.3s ease;
}

@media (max-width: 468px) {
    .winge-notification-item {
        padding: 12px;
        gap: 10px;
    }
}

.winge-notification-item:hover {
    background: #f8f9fa;
}

.winge-notification-item.unread {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
}

.winge-notification-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.winge-notification-content {
    flex: 1;
}

.winge-notification-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}

.winge-notification-message {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.4;
}

@media (max-width: 468px) {
    .winge-notification-message {
        font-size: 13px;
    }
}

.winge-notification-time {
    font-size: 12px;
    color: #adb5bd;
    margin-top: 5px;
}

/* Chat Styles */
.winge-chat-container {
    display: flex;
    height: 500px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .winge-chat-container {
        flex-direction: column;
        height: auto;
        min-height: 400px;
    }
}

.winge-chat-sidebar {
    width: 300px;
    background: #f8f9fa;
    border-right: 1px solid #e9ecef;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .winge-chat-sidebar {
        width: 100%;
        max-height: 200px;
    }
}

.winge-chat-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

@media (max-width: 468px) {
    .winge-chat-messages {
        padding: 15px;
    }
}

.winge-message {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-end;
    gap: 10px;
}

.winge-message.sent {
    justify-content: flex-end;
}

.winge-message-bubble {
    max-width: 70%;
    padding: 10px 15px;
    border-radius: 18px;
    word-wrap: break-word;
}

@media (max-width: 468px) {
    .winge-message-bubble {
        max-width: 85%;
        padding: 8px 12px;
    }
}

.winge-message.received .winge-message-bubble {
    background: #e9ecef;
    color: #495057;
}

.winge-message.sent .winge-message-bubble {
    background: #667eea;
    color: white;
}

.winge-chat-input {
    padding: 20px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

@media (max-width: 468px) {
    .winge-chat-input {
        padding: 15px;
    }
}

.winge-chat-input-group {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.winge-chat-input-field {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ced4da;
    border-radius: 20px;
    resize: none;
    max-height: 100px;
}

/* Modals */
.winge-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.winge-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.winge-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@media (max-width: 468px) {
    .winge-modal-content {
        /* On very small screens, still respect min 278px and cap at 400px */
        width: clamp(278px, 95vw, 400px);
        margin: 10px;
    }
}

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

.winge-modal-header {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: between;
    align-items: center;
}

@media (max-width: 468px) {
    .winge-modal-header {
        padding: 15px;
    }
}

.winge-modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.winge-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6c757d;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.winge-modal-close:hover {
    background: #f8f9fa;
}

.winge-modal-body {
    padding: 20px;
}

@media (max-width: 468px) {
    .winge-modal-body {
        padding: 15px;
    }
}

/* Loading States */
.winge-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.winge-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Utility Classes */
.winge-text-center { text-align: center; }
.winge-text-left { text-align: left; }
.winge-text-right { text-align: right; }

.winge-mb-0 { margin-bottom: 0; }
.winge-mb-1 { margin-bottom: 8px; }
.winge-mb-2 { margin-bottom: 16px; }
.winge-mb-3 { margin-bottom: 24px; }

.winge-mt-0 { margin-top: 0; }
.winge-mt-1 { margin-top: 8px; }
.winge-mt-2 { margin-top: 16px; }
.winge-mt-3 { margin-top: 24px; }

.winge-p-0 { padding: 0; }
.winge-p-1 { padding: 8px; }
.winge-p-2 { padding: 16px; }
.winge-p-3 { padding: 24px; }

.winge-d-none { display: none; }
.winge-d-block { display: block; }
.winge-d-flex { display: flex; }
.winge-d-grid { display: grid; }

.winge-flex-column { flex-direction: column; }
.winge-flex-wrap { flex-wrap: wrap; }
.winge-justify-center { justify-content: center; }
.winge-align-center { align-items: center; }

.winge-w-100 { width: 100%; }
.winge-h-100 { height: 100%; }

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.winge-fade-in {
    animation: fadeIn 0.5s ease;
}

.winge-slide-up {
    animation: slideUp 0.5s ease;
}

/* Topbar Icons & Navigation */
.winge-topbar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.winge-topbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.winge-topbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

.winge-topbar-logo img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.winge-topbar-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

.winge-topbar-link {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.winge-topbar-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.winge-topbar-link.active {
    background: rgba(255, 255, 255, 0.3);
}

.winge-topbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.winge-topbar-icon {
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    color: white;
    font-size: 18px;
}

.winge-topbar-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.winge-topbar-icon .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.winge-topbar-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.winge-topbar-profile:hover {
    background: rgba(255, 255, 255, 0.2);
}

.winge-profile-image {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.winge-profile-name {
    font-weight: 500;
    font-size: 14px;
}

/* Mobile Topbar */
@media (max-width: 768px) {
    .winge-topbar {
        padding: 12px 15px;
    }
    
    .winge-topbar-nav {
        display: none; /* Hide nav on mobile, show in menu */
    }
    
    .winge-topbar-profile {
        padding: 5px;
    }
    
    .winge-profile-name {
        display: none; /* Hide name on mobile */
    }
}

/* Dashboard Stats Cards */
.winge-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.winge-stat-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.winge-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.winge-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.winge-stat-card.stat-primary::before {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.winge-stat-card.stat-success::before {
    background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
}

.winge-stat-card.stat-warning::before {
    background: linear-gradient(90deg, #ffc107 0%, #fd7e14 100%);
}

.winge-stat-card.stat-danger::before {
    background: linear-gradient(90deg, #dc3545 0%, #e83e8c 100%);
}

.winge-stat-card.stat-info::before {
    background: linear-gradient(90deg, #17a2b8 0%, #20c997 100%);
}

.winge-stat-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.winge-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
}

.winge-stat-card.stat-success .winge-stat-icon {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}

.winge-stat-card.stat-warning .winge-stat-icon {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

.winge-stat-card.stat-danger .winge-stat-icon {
    background: linear-gradient(135deg, #dc3545 0%, #e83e8c 100%);
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.3);
}

.winge-stat-card.stat-info .winge-stat-icon {
    background: linear-gradient(135deg, #17a2b8 0%, #20c997 100%);
    box-shadow: 0 4px 10px rgba(23, 162, 184, 0.3);
}

.winge-stat-trend {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.winge-stat-trend.trend-up {
    background: #d4edda;
    color: #155724;
}

.winge-stat-trend.trend-down {
    background: #f8d7da;
    color: #721c24;
}

.winge-stat-body {
    margin-bottom: 10px;
}

.winge-stat-label {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 8px;
    font-weight: 500;
}

.winge-stat-value {
    font-size: 32px;
    font-weight: bold;
    color: #2c3e50;
    line-height: 1;
    margin-bottom: 5px;
}

.winge-stat-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
    font-size: 13px;
    color: #6c757d;
}

.winge-stat-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.winge-stat-link:hover {
    color: #5a6fd8;
    gap: 8px;
}

/* Mobile Stats Cards */
@media (max-width: 768px) {
    .winge-dashboard-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .winge-stat-card {
        padding: 20px;
    }
    
    .winge-stat-value {
        font-size: 28px;
    }
}

@media (max-width: 468px) {
    .winge-stat-card {
        padding: 15px;
    }
    
    .winge-stat-value {
        font-size: 24px;
    }
    
    .winge-stat-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* Dashboard Tabs */
.winge-tabs-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 30px;
}

.winge-tabs-nav {
    display: flex;
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.winge-tab-btn {
    flex: 1;
    min-width: 120px;
    padding: 15px 20px;
    border: none;
    background: transparent;
    color: #6c757d;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.winge-tab-btn:hover {
    background: rgba(102, 126, 234, 0.05);
    color: #667eea;
}

.winge-tab-btn.active {
    color: #667eea;
    background: white;
}

.winge-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.winge-tab-btn .icon {
    margin-right: 8px;
    font-size: 16px;
}

.winge-tab-btn .badge {
    background: #dc3545;
    color: white;
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 11px;
    margin-left: 8px;
}

.winge-tabs-content {
    padding: 25px;
}

.winge-tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.winge-tab-pane.active {
    display: block;
}

/* Mobile Tabs */
@media (max-width: 768px) {
    .winge-tab-btn {
        min-width: 100px;
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .winge-tabs-content {
        padding: 20px 15px;
    }
}

@media (max-width: 468px) {
    .winge-tabs-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .winge-tab-btn {
        min-width: 90px;
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .winge-tabs-content {
        padding: 15px;
    }
}

/* Profile Images */
.winge-profile-avatar {
    position: relative;
    display: inline-block;
}

.winge-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e9ecef;
    background: #f8f9fa;
}

.winge-avatar-xs {
    width: 24px;
    height: 24px;
}

.winge-avatar-sm {
    width: 32px;
    height: 32px;
}

.winge-avatar-md {
    width: 40px;
    height: 40px;
}

.winge-avatar-lg {
    width: 60px;
    height: 60px;
}

.winge-avatar-xl {
    width: 80px;
    height: 80px;
}

.winge-avatar-2xl {
    width: 120px;
    height: 120px;
}

.winge-avatar-status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: #6c757d;
}

.winge-avatar-status.status-online {
    background: #28a745;
}

.winge-avatar-status.status-away {
    background: #ffc107;
}

.winge-avatar-status.status-busy {
    background: #dc3545;
}

.winge-avatar-status.status-offline {
    background: #6c757d;
}

.winge-avatar-group {
    display: flex;
    align-items: center;
}

.winge-avatar-group .winge-avatar {
    margin-left: -10px;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.winge-avatar-group .winge-avatar:first-child {
    margin-left: 0;
}

.winge-avatar-count {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #495057;
    margin-left: -10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Print Styles */
@media print {
    .winge-container {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .winge-btn,
    .winge-modal,
    .winge-chat-input,
    .winge-topbar {
        display: none;
    }
}


/* ========================================
   WITHDRAW CONDITION MESSAGE STYLES
   ======================================== */
.withdraw-condition-message {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
}

.withdraw-condition-message .condition-item {
    display: flex;
    align-items: flex-start;
    padding: 12px;
    margin: 8px 0;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.6;
}

.withdraw-condition-message .condition-item.incomplete {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
}

.withdraw-condition-message .condition-item.complete {
    background: #d4edda;
    border-left: 4px solid #28a745;
}

.withdraw-condition-message .condition-item .icon {
    font-size: 20px;
    margin-right: 10px;
    flex-shrink: 0;
}

.withdraw-condition-message .condition-item .text {
    flex: 1;
    color: #212529;
}

.withdraw-condition-message .condition-item .text strong {
    color: #000;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .withdraw-condition-message {
        padding: 12px;
    }
    
    .withdraw-condition-message .condition-item {
        padding: 10px;
        font-size: 13px;
    }
    
    .withdraw-condition-message .condition-item .icon {
        font-size: 18px;
        margin-right: 8px;
    }
}
