/* Mobile App Style CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
}

.container {
    max-width: 400px;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Header */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 20px;
    text-align: center;
    position: relative;
}

.header h1 {
    font-size: 20px;
    margin: 0;
}

.balance-display {
    background: rgba(255,255,255,0.2);
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
    text-align: center;
}

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

/* Navigation */
.navbar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 400px;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 100;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.nav-item {
    text-align: center;
    color: #666;
    text-decoration: none;
    padding: 5px;
    border-radius: 10px;
    transition: all 0.3s;
    flex: 1;
}

.nav-item.active {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.nav-item i {
    font-size: 20px;
    display: block;
    margin-bottom: 5px;
}

.nav-item span {
    font-size: 12px;
}

/* Main Content */
.main-content {
    padding: 20px;
    padding-bottom: 80px;
}

/* Cards */
.card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
}

.card-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 15px;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

/* Buttons */
.btn {
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-weight: 500;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-success {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
    color: white;
}

.btn-warning {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.btn-full {
    width: 100%;
    margin-bottom: 10px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

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

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

.form-input:focus {
    outline: none;
    border-color: #667eea;
}

/* Checkbox styles for remember me */
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    margin: 10px 0;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e1e1e1;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
    color: #667eea;
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

/* Order Items */
.order-item {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    border-left: 4px solid #667eea;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.order-amount {
    font-size: 18px;
    font-weight: bold;
    color: #667eea;
}

.order-status {
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

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

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

/* Alerts */
.alert {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Profile Section */
.profile-header {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    margin-bottom: 20px;
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid white;
    margin-bottom: 10px;
}

.profile-name {
    font-size: 20px;
    font-weight: bold;
}

.profile-email {
    color: #666;
    font-size: 14px;
}

/* Withdrawal Slider Styles */
.withdrawal-slider-container {
    padding: 0;
    overflow: hidden;
    height: 80px;
    position: relative;
}

.withdrawal-slider {
    display: flex;
    animation: slideLeft 20s linear infinite;
    gap: 0;
}

.withdrawal-item {
    min-width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.withdrawal-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.withdrawal-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.auth-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 400px;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-title {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.user-info .username {
    font-weight: 600;
    font-size: 14px;
    color: white;
}

.user-info .withdrawal-time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.withdrawal-details {
    text-align: center;
}

.withdrawal-amount {
    font-weight: bold;
    font-size: 16px;
    color: #55efc4;
    margin-bottom: 2px;
}

.withdrawal-method {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.withdrawal-status .status-badge {
    background: rgba(85, 239, 196, 0.2);
    color: #55efc4;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(85, 239, 196, 0.3);
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.withdrawal-slider:hover {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        max-width: 100%;
    }
    
    .main-content {
        padding: 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading Spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Hide scrollbar but keep functionality */
.container::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

/* Withdrawal Records Table */
.withdrawal-records-container {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 24px;
    overflow: hidden;
    box-shadow: 
        0 2px 20px rgba(0, 0, 0, 0.08),
        0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
}

.withdrawal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-bottom: none;
}

.withdrawal-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.withdrawal-title i {
    font-size: 20px;
    color: #55efc4;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Withdrawal Table Styles */
.withdrawal-table {
    width: 100%;
}

.table-header {
    display: grid;
    grid-template-columns: 60px 1fr 100px 80px;
    background: #f9fafb;
    border-bottom: 2px solid #e5e7eb;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-body {
    max-height: 400px;
    overflow-y: auto;
}

.table-row {
    display: grid;
    grid-template-columns: 60px 1fr 100px 80px;
    padding: 16px 20px;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.2s ease;
    align-items: center;
}

.table-row:hover {
    background: #f9fafb;
}

.table-row:last-child {
    border-bottom: none;
}

.td-time {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
}

.td-user {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #111827;
    font-weight: 500;
}

.user-avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    border: 2px solid #e0e7ff;
}

.td-amount {
    font-size: 14px;
    font-weight: 700;
    color: #059669;
}

.td-status {
    text-align: center;
}

.status-success {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #dcfce7;
    color: #16a34a;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid #86efac;
}

.status-success i {
    font-size: 11px;
}

.commission-header-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.commission-main-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: none;
    letter-spacing: -0.3px;
}

.commission-main-title i {
    font-size: 18px;
    color: #3b82f6;
}

.live-pulse-indicator {
    width: 8px;
    height: 8px;
    background: #e74c3c;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
}

.live-status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #dcfce7;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    color: #16a34a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #86efac;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #16a34a;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Enhanced Commission List Display */
.commission-list-container {
    padding: 0;
    overflow: hidden;
    max-height: 400px;
    position: relative;
    background: #ffffff;
}

.commission-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
}

.commission-item {
    width: 100%;
    transition: all 0.5s ease;
    transform: translateY(0);
    opacity: 1;
    position: relative;
    margin-bottom: 0;
    border-bottom: 2px solid #d1d5db !important;
}

/* Individual Commission Card */
.commission-card {
    background: #ffffff;
    border-radius: 0;
    border: none;
    backdrop-filter: none;
    box-shadow: none;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.commission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(85, 239, 196, 0.02) 0%, rgba(102, 126, 234, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.commission-card:hover {
    transform: translateY(-1px);
    border-color: #d1d5db;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 2px 4px rgba(0, 0, 0, 0.04);
}

.commission-card:hover::before {
    opacity: 1;
}

.commission-item.new-item {
    transform: translateY(-100%);
    opacity: 0;
}

.commission-item.removing {
    transform: translateY(100%);
    opacity: 0;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.withdrawal-row-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: white;
    gap: 15px;
}

.withdrawal-user-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.user-avatar-table {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #55efc4 0%, #00b894 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        0 0 0 3px rgba(85, 239, 196, 0.2);
    position: relative;
}

.user-avatar-table::after {
    content: '✓';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    background: #00b894;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.user-info-table {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.username-table {
    font-weight: 700;
    font-size: 14px;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.time-table {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.withdrawal-amount-section {
    text-align: center;
    flex: 1;
}

.amount-table {
    font-weight: 800;
    font-size: 16px;
    color: #55efc4;
    margin-bottom: 3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.method-table {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.withdrawal-status-section {
    flex: 0 0 auto;
}

.status-badge-table {
    background: linear-gradient(135deg, rgba(85, 239, 196, 0.3) 0%, rgba(85, 239, 196, 0.2) 100%);
    color: #55efc4;
    padding: 6px 10px;
    border-radius: 15px;
    font-size: 9px;
    font-weight: 700;
    border: 1px solid rgba(85, 239, 196, 0.4);
    box-shadow: 0 2px 8px rgba(85, 239, 196, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    animation: glow 3s ease-in-out infinite;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Enhanced Commission Row Content within Cards */
.commission-row-content {
    display: flex;
    align-items: center;
    width: 100%;
    color: #1f2937;
    gap: 0;
    padding: 16px 20px;
    position: relative;
    transition: all 0.2s ease;
    background: #ffffff;
}

.commission-row-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #E74C3C;
    border-radius: 0 4px 4px 0;
}

.commission-date-section {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(85, 239, 196, 0.25) 0%, rgba(102, 126, 234, 0.25) 100%);
    padding: 14px 16px;
    border-radius: 10px;
    min-width: 65px;
    border: 1.5px solid rgba(85, 239, 196, 0.4);
    box-shadow: 
        0 4px 15px rgba(85, 239, 196, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
}

.commission-date-section::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    border-radius: 8px;
    pointer-events: none;
}

.date-display {
    font-size: 16px;
    font-weight: 800;
    color: white;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.commission-details-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    margin-left: 12px;
}

.phone-number {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    letter-spacing: 0.5px;
    text-shadow: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-number::before {
    content: '';
    width: 32px;
    height: 32px;
    background: #fee2e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #dc2626;
    border: 2px solid #fecaca;
}

.commission-amount {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    text-shadow: none;
    animation: none;
    letter-spacing: 0;
}

@keyframes subtlePulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.02);
        text-shadow: 0 4px 8px rgba(85, 239, 196, 0.2);
    }
}

/* One-by-One Slide Animation */
@keyframes slideOneByOne {
    0%, 16.66% {
        transform: translateX(0%); /* Show item 1 */
    }
    16.67%, 33.33% {
        transform: translateX(-100%); /* Show item 2 */
    }
    33.34%, 50% {
        transform: translateX(-200%); /* Show item 3 */
    }
    50.01%, 66.66% {
        transform: translateX(-300%); /* Show item 4 */
    }
    66.67%, 83.33% {
        transform: translateX(-400%); /* Show item 5 */
    }
    83.34%, 100% {
        transform: translateX(-500%); /* Show item 6 */
    }
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(85, 239, 196, 0.2);
    }
    50% {
        box-shadow: 0 4px 15px rgba(85, 239, 196, 0.4);
    }
}

.withdrawal-slider:hover {
    animation-play-state: paused;
}

/* Live Indicator */
.live-indicator {
    width: 8px;
    height: 8px;
    background: #e74c3c;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
}

@keyframes livePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
    }
    70% {
        transform: scale(1.2);
        box-shadow: 0 0 0 8px rgba(231, 76, 60, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}

@keyframes iconGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .commission-header-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .commission-header-left {
        justify-content: center;
        text-align: center;
    }
    
    .commission-header-right {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .commission-main-title {
        font-size: 18px;
        justify-content: center;
    }
    
    .commission-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .commission-main-icon {
        font-size: 20px;
    }
    
    .withdrawal-slider-container {
        height: 80px;
    }
    
    .withdrawal-item {
        padding: 15px 16px;
    }
    
    .withdrawal-content {
        gap: 10px;
    }
    
    .withdrawal-slider .user-avatar {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .withdrawal-slider .user-info .username {
        font-size: 14px;
    }
    
    .withdrawal-amount {
        font-size: 16px;
    }
    
    .withdrawal-method {
        font-size: 11px;
    }
    
    .withdrawal-status .status-badge {
        padding: 4px 8px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .withdrawal-slider-container {
        height: 75px;
    }
    
    .withdrawal-item {
        padding: 12px 14px;
    }
    
    .withdrawal-content {
        gap: 8px;
    }
    
    .withdrawal-slider .user-avatar {
        width: 35px;
        height: 35px;
        font-size: 13px;
    }
    
    .withdrawal-slider .user-info .username {
        font-size: 13px;
    }
    
    .withdrawal-amount {
        font-size: 15px;
    }
    
    .withdrawal-method {
        font-size: 10px;
    }
}
