/* Modern User Dashboard Styles */
.uwm-user-dashboard {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
    background: #f8f9fa;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Dashboard Top Bar */
.uwm-dashboard-top-bar {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.uwm-welcome-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.uwm-welcome-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #03968F;
}

.uwm-welcome-text h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
}

.uwm-welcome-text p {
    margin: 5px 0 0;
    color: #7f8c8d;
    font-size: 16px;
}

.uwm-top-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Phone chip next to balance */
.uwm-phone-display {
    background: linear-gradient(135deg, #03968F 0%, #02756f 100%);
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.uwm-phone-display #uwm-phone-text { font-weight: 600; }
.uwm-phone-display #uwm-edit-phone-btn { background: #02756f; color: #fff; border: none; border-radius: 6px; padding: 6px 10px; cursor: pointer; }
.uwm-phone-display #uwm-edit-phone-btn:hover { background: #016a64; }

/* Modal tweaks for intl phone input */
.uwm-modal-body .iti { width: 100%; }
.uwm-modal-body .iti__country-list { z-index: 10000; }

.uwm-balance-display {
    background: linear-gradient(135deg, #03968F 0%, #02756f 100%);
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.uwm-role-toggle-top {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #2c3e50;
}

/* Clean Tab Navigation */
.uwm-dashboard-tabs-clean {
    display: flex;
    background: #fff;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
}

.uwm-tab-btn-clean {
    flex: 1;
    min-width: 150px;
    padding: 18px 24px;
    background: #fff;
    color: #7f8c8d;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.uwm-tab-btn-clean:hover {
    background: #f8f9fa;
    color: #03968F;
}

.uwm-tab-btn-clean.active {
    background: #fff;
    color: #03968F;
    border-bottom-color: #03968F;
}

/* Dashboard Content */
.uwm-dashboard-content-modern {
    background: #fff;
    border-radius: 0 0 12px 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    min-height: 400px;
}

.uwm-tab-content-modern {
    display: none;
}

.uwm-tab-content-modern.active {
    display: block;
}

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

.uwm-stat-box {
    background: #fff;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.uwm-stat-box:hover {
    border-color: #03968F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 150, 143, 0.1);
}

.uwm-stat-box-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.uwm-stat-box-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #03968F 0%, #02756f 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.uwm-stat-box-label {
    font-size: 14px;
    font-weight: 600;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.uwm-stat-box-value {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
    margin-bottom: 10px;
}

.uwm-stat-box-change {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #03968F;
    font-weight: 500;
}

/* Quick Actions */
.uwm-content-section {
    margin-bottom: 40px;
}

.uwm-section-header {
    margin-bottom: 25px;
}

.uwm-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.uwm-quick-actions-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.uwm-quick-action-card {
    background: #fff;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.uwm-quick-action-card:hover {
    border-color: #03968F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 150, 143, 0.1);
    text-decoration: none;
    color: inherit;
}

.uwm-quick-action-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #03968F 0%, #02756f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #fff;
    font-size: 24px;
}

.uwm-quick-action-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 8px;
}

.uwm-quick-action-desc {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
}

/* Forms */
.uwm-form {
    max-width: 600px;
}

.uwm-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.uwm-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.uwm-form-group input[type="text"],
.uwm-form-group input[type="email"],
.uwm-form-group input[type="number"],
.uwm-form-group input[type="tel"],
.uwm-form-group textarea,
.uwm-form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fff;
}

.uwm-form-group input:focus,
.uwm-form-group textarea:focus,
.uwm-form-group select:focus {
    border-color: #03968F;
    outline: none;
    box-shadow: 0 0 0 3px rgba(3, 150, 143, 0.1);
}

.uwm-form-group small {
    display: block;
    margin-top: 5px;
    color: #7f8c8d;
    font-size: 12px;
}

.uwm-form-actions {
    margin-top: 30px;
}

/* Buttons */
.uwm-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: #03968F;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.uwm-btn:hover {
    background: #02756f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 150, 143, 0.3);
    text-decoration: none;
    color: #fff;
}

.uwm-btn-secondary {
    background: #F0A94C;
}

.uwm-btn-secondary:hover {
    background: #d89538;
}

.uwm-btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.uwm-btn-block {
    width: 100%;
    justify-content: center;
}

/* Gallery */
.uwm-gallery-upload {
    margin-bottom: 30px;
    text-align: center;
}

.uwm-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.uwm-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
}

.uwm-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.uwm-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.uwm-gallery-item:hover .uwm-gallery-overlay {
    opacity: 1;
}

.uwm-gallery-delete {
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.uwm-gallery-delete:hover {
    background: #c0392b;
    transform: scale(1.1);
}

/* Empty States */
.uwm-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #7f8c8d;
}

.uwm-empty-state .dashicons {
    font-size: 48px;
    margin-bottom: 20px;
    color: #bdc3c7;
}

.uwm-empty-state p {
    font-size: 16px;
    margin: 0 0 10px;
}

.uwm-empty-state small {
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .uwm-user-dashboard {
        padding: 0 15px;
    }
    
    .uwm-dashboard-top-bar {
        flex-direction: column;
        text-align: center;
    }
    /* Stack balance and phone chips and make full-width on small screens */
    .uwm-top-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .uwm-balance-display,
    .uwm-phone-display {
        width: 100%;
        justify-content: center;
    }
    .uwm-phone-display #uwm-edit-phone-btn { padding: 6px 10px; }
    
    .uwm-tab-btn-clean {
        min-width: 120px;
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .uwm-dashboard-content-modern {
        padding: 20px;
    }
    
    .uwm-stats-overview {
        grid-template-columns: 1fr;
    }
    
    .uwm-quick-actions-modern {
        grid-template-columns: 1fr;
    }
    
    .uwm-form-row {
        grid-template-columns: 1fr;
    }
    
    .uwm-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

/* Add Funds Modal Styles */
.uwm-add-funds-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.uwm-add-funds-modal.show {
    opacity: 1;
    visibility: visible;
}

.uwm-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.uwm-modal-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.uwm-add-funds-modal.show .uwm-modal-content {
    transform: scale(1) translateY(0);
}

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

.uwm-modal-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.uwm-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #adb5bd;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.uwm-modal-close:hover {
    background: #f8f9fa;
    color: #6c757d;
}

.uwm-modal-body {
    padding: 30px;
}

.uwm-modal-body p {
    margin: 0 0 25px;
    color: #6c757d;
    font-size: 16px;
    line-height: 1.5;
}

.uwm-amount-input-group {
    position: relative;
    margin-bottom: 25px;
}

.uwm-currency-symbol {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    z-index: 2;
}

.uwm-amount-input {
    width: 100%;
    padding: 18px 20px 18px 50px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    background: #f8f9fa;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.uwm-amount-input:focus {
    outline: none;
    border-color: #03968F;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(3, 150, 143, 0.1);
}

.uwm-quick-amounts {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 10px;
}

.uwm-quick-amount {
    padding: 12px 8px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: #fff;
    color: #6c757d;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.uwm-quick-amount:hover {
    border-color: #03968F;
    color: #03968F;
    background: #f0fffe;
}

.uwm-quick-amount.active {
    border-color: #03968F;
    background: #03968F;
    color: #fff;
}

.uwm-modal-footer {
    padding: 20px 30px 30px;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.uwm-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 100px;
}

.uwm-btn-secondary {
    background: #f8f9fa;
    color: #6c757d;
    border: 2px solid #e9ecef;
}

.uwm-btn-secondary:hover {
    background: #e9ecef;
    color: #495057;
}

.uwm-btn-primary {
    background: #03968F;
    color: #fff;
}

.uwm-btn-primary:hover {
    background: #027a73;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(3, 150, 143, 0.3);
}

.uwm-btn-danger {
    background: #dc3545;
    color: #fff;
}

.uwm-btn-danger:hover {
    background: #c82333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Mobile Responsive for Modal */
@media (max-width: 768px) {
    .uwm-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .uwm-modal-header,
    .uwm-modal-body,
    .uwm-modal-footer {
        padding: 20px;
    }
    
    .uwm-quick-amounts {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .uwm-quick-amount {
        padding: 10px 6px;
        font-size: 13px;
    }
    
    .uwm-modal-footer {
        flex-direction: column;
    }
    
    .uwm-btn {
        width: 100%;
    }
}

/* Cell Phone Style Call Popup */
.uwm-call-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.uwm-call-popup.show {
    opacity: 1;
    visibility: visible;
}

.uwm-call-phone {
    width: 320px;
    height: 600px;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.uwm-call-popup.show .uwm-call-phone {
    transform: scale(1) translateY(0);
}

.uwm-call-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.uwm-call-screen::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

.uwm-call-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.uwm-call-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.uwm-call-avatar .dashicons {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.8);
}

.uwm-call-name {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.uwm-call-status {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.uwm-call-actions {
    display: flex;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.uwm-call-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.uwm-call-btn:hover {
    transform: scale(1.1);
}

.uwm-call-btn-decline {
    background: #e74c3c;
    color: white;
}

.uwm-call-btn-decline:hover {
    background: #c0392b;
}

.uwm-call-btn-accept {
    background: #27ae60;
    color: white;
}

.uwm-call-btn-accept:hover {
    background: #229954;
}

.uwm-call-timer {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
}

.uwm-call-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    z-index: 3;
}

.uwm-call-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Enhanced Call Popup Styles */
.uwm-call-popup {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
}

.uwm-call-phone {
    border: 3px solid rgba(0, 255, 136, 0.3);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8), 0 0 50px rgba(0, 255, 136, 0.2);
}

.uwm-call-screen {
    background: linear-gradient(135deg, #0f0f23, #1a1a2e, #16213e);
    position: relative;
    overflow: hidden;
}

.uwm-call-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.uwm-call-timer {
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid rgba(0, 255, 136, 0.4);
    color: #00ff88;
    font-weight: 700;
    letter-spacing: 2px;
    backdrop-filter: blur(10px);
}

.uwm-call-avatar {
    border: 3px solid rgba(0, 255, 136, 0.4);
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.3);
}

.uwm-call-avatar::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: conic-gradient(from 0deg, #00ff88, #00d4ff, #ff00ff, #00ff88);
    border-radius: 50%;
    z-index: -1;
    animation: rotate 3s linear infinite;
}

.uwm-call-name {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    font-weight: 800;
}

.uwm-call-status.ringing {
    animation: pulse 1.2s infinite;
    color: #00ff88;
    font-weight: 600;
}

.uwm-call-status.connecting {
    animation: pulse 0.8s infinite;
    color: #00d4ff;
    font-weight: 600;
}

.uwm-call-status.connected {
    color: #00ff88;
    animation: none;
    font-weight: 700;
}

.uwm-call-status.failed {
    color: #ff4757;
    animation: none;
    font-weight: 700;
}

.uwm-call-btn {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.uwm-call-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.uwm-call-btn:hover::before {
    transform: translateX(100%);
}

.uwm-call-btn-decline {
    background: linear-gradient(145deg, #ff4757, #ff3742);
    border: 2px solid rgba(255, 71, 87, 0.4);
}

.uwm-call-btn-decline:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(255, 71, 87, 0.6);
}

.uwm-call-btn-accept {
    background: linear-gradient(145deg, #00ff88, #00d4aa);
    border: 2px solid rgba(0, 255, 136, 0.4);
}

.uwm-call-btn-accept:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.6);
}

/* Form Check Styles */
.uwm-call-form-check {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

/* Fallback for Dashicons */
.uwm-call-form-check-item .dashicons:before {
    font-family: dashicons;
    font-style: normal;
    font-weight: normal;
    speak: never;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: 0.2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Fallback icons if Dashicons don't load */
.uwm-call-form-check-item.success .dashicons:before {
    content: "✓";
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #00ff88;
}

.uwm-call-form-check-item.error .dashicons:before {
    content: "✗";
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #ff4757;
}

.uwm-call-form-check-item.warning .dashicons:before {
    content: "⚠";
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #ffa502;
}

.uwm-call-form-check h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.uwm-call-form-check-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.uwm-call-form-check-item .dashicons {
    margin-right: 10px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.uwm-call-form-check-item.success .dashicons {
    color: #00ff88;
}

.uwm-call-form-check-item.error .dashicons {
    color: #ff4757;
}

.uwm-call-form-check-item.warning .dashicons {
    color: #ffa502;
}

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

/* Mobile Responsive for Call Popup */
@media (max-width: 768px) {
    .uwm-call-phone {
        width: 300px;
        height: 580px;
        margin: 20px;
    }
    
    .uwm-call-avatar {
        width: 110px;
        height: 110px;
        margin-bottom: 25px;
    }
    
    .uwm-call-avatar img {
        width: 90px;
        height: 90px;
    }
    
    .uwm-call-avatar .dashicons {
        font-size: 55px;
    }
    
    .uwm-call-name {
        font-size: 22px;
    }
    
    .uwm-call-status {
        font-size: 16px;
        margin-bottom: 35px;
    }
    
    .uwm-call-actions {
        gap: 25px;
    }
    
    .uwm-call-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .uwm-call-form-check {
        padding: 15px;
        margin: 15px 0;
    }
    
    .uwm-call-form-check h4 {
        font-size: 14px;
    }
    
    .uwm-call-form-check-item {
        font-size: 13px;
    }
}

/* Payment Success Notice Styles */
.uwm-notice {
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    border-left: 4px solid;
    font-size: 16px;
    line-height: 1.5;
}

.uwm-notice-success {
    background: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.uwm-notice-success p {
    margin: 0 0 10px;
}

.uwm-notice-success p:last-child {
    margin-bottom: 0;
}

.uwm-notice-success a {
    color: #155724;
    font-weight: 600;
    text-decoration: none;
}

.uwm-notice-success a:hover {
    text-decoration: underline;
}

.uwm-notice-error {
    background: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

.uwm-notice-error p {
    margin: 0 0 10px;
}

.uwm-notice-error p:last-child {
    margin-bottom: 0;
}

.uwm-notice-error a {
    color: #721c24;
    font-weight: 600;
    text-decoration: none;
}

.uwm-notice-error a:hover {
    text-decoration: underline;
}

/* Withdrawal, Verification, and Confirmation Modal Styles */
.uwm-withdrawal-modal,
.uwm-verification-modal,
.uwm-confirmation-modal,
.uwm-delete-confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.uwm-withdrawal-modal.show,
.uwm-verification-modal.show,
.uwm-confirmation-modal.show,
.uwm-delete-confirmation-modal.show {
    opacity: 1;
    visibility: visible;
}

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

.uwm-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

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

.uwm-form-control:focus {
    border-color: #03968F;
    outline: none;
    box-shadow: 0 0 0 3px rgba(3, 150, 143, 0.1);
}

/* Mobile Responsive for New Modals */
@media (max-width: 768px) {
    .uwm-withdrawal-modal .uwm-modal-content,
    .uwm-verification-modal .uwm-modal-content,
    .uwm-confirmation-modal .uwm-modal-content,
    .uwm-delete-confirmation-modal .uwm-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .uwm-withdrawal-modal .uwm-modal-header,
    .uwm-withdrawal-modal .uwm-modal-body,
    .uwm-withdrawal-modal .uwm-modal-footer,
    .uwm-verification-modal .uwm-modal-header,
    .uwm-verification-modal .uwm-modal-body,
    .uwm-verification-modal .uwm-modal-footer,
    .uwm-confirmation-modal .uwm-modal-header,
    .uwm-confirmation-modal .uwm-modal-body,
    .uwm-confirmation-modal .uwm-modal-footer,
    .uwm-delete-confirmation-modal .uwm-modal-header,
    .uwm-delete-confirmation-modal .uwm-modal-body,
    .uwm-delete-confirmation-modal .uwm-modal-footer {
        padding: 20px;
    }
}