/* WallShoot Lotto Authentication Styles */

/* Authentication Form Container */
.ws-auth-form {
    max-width: 500px;
    margin: 0 auto;
    background: #2d3748;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    color: #e2e8f0;
}

/* Auth Tabs */
.ws-auth-tabs {
    display: flex;
    background: #1a202c;
    border-bottom: 1px solid #4a5568;
    border-radius: 12px 12px 0 0;
}

.ws-auth-tab {
    flex: 1;
    padding: 18px 24px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #a0aec0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.ws-auth-tab:hover {
    background: #2d3748;
    color: #e2e8f0;
}

.ws-auth-tab.active {
    background: #6a5acd;
    color: white;
    border-radius: 12px 12px 0 0;
}

.ws-auth-tab:first-child.active {
    border-radius: 12px 0 0 0;
}

.ws-auth-tab:last-child.active {
    border-radius: 0 12px 0 0;
}

/* Auth Content */
.ws-auth-content {
    padding: 40px;
}

.ws-auth-panel {
    display: none;
    padding: 40px;
    background: #2d3748;
}

.ws-auth-panel.active {
    display: block;
}

/* Form Groups */
.ws-form-group {
    margin-bottom: 24px;
}

.ws-form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #e2e8f0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ws-form-group input[type="text"],
.ws-form-group input[type="email"],
.ws-form-group input[type="password"],
.ws-form-group input[type="number"] {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #4a5568;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #4a5568;
    color: #e2e8f0;
    font-weight: 500;
}

.ws-form-group input:focus {
    outline: none;
    border-color: #6a5acd;
    box-shadow: 0 0 0 3px rgba(106, 90, 205, 0.2);
    background: #2d3748;
}

.ws-form-group input::placeholder {
    color: #a0aec0;
    opacity: 0.8;
}

/* Checkbox Styling */
.ws-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #e2e8f0;
    margin-bottom: 0;
}

.ws-checkbox input[type="checkbox"] {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    accent-color: #6a5acd;
    cursor: pointer;
}

.ws-checkmark {
    margin-left: 8px;
}

/* Buttons */
.ws-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 52px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.ws-btn-primary {
    background: #6a5acd;
    color: white;
    box-shadow: 0 4px 15px rgba(106, 90, 205, 0.3);
}

.ws-btn-primary:hover {
    background: #5a4fcf;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(106, 90, 205, 0.4);
}

.ws-btn-secondary {
    background: #6c757d;
    color: white;
}

.ws-btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

.ws-btn-success {
    background: #28a745;
    color: white;
}

.ws-btn-success:hover {
    background: #218838;
    transform: translateY(-1px);
}

.ws-btn-danger {
    background: #dc3545;
    color: white;
}

.ws-btn-danger:hover {
    background: #c82333;
    transform: translateY(-1px);
}

/* Social Authentication */
.ws-social-auth {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.ws-social-auth p {
    margin-bottom: 15px;
    color: #6c757d;
    font-size: 14px;
}

.ws-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 10px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    color: #495057;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ws-social-btn:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-1px);
}

.ws-social-btn.ws-google:hover {
    border-color: #db4437;
    color: #db4437;
}

.ws-social-btn.ws-facebook:hover {
    border-color: #4267B2;
    color: #4267B2;
}

.ws-social-btn.ws-twitter:hover {
    border-color: #1DA1F2;
    color: #1DA1F2;
}

/* User Profile */
.ws-user-profile {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.ws-profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.ws-profile-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.ws-profile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 30px;
    background: #f8f9fa;
}

.ws-stat-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.ws-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.ws-stat-card h3 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ws-stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
}

.ws-profile-actions {
    padding: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* User Credits Display */
.ws-user-credits {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.ws-credits-display {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ws-credits-label {
    font-size: 16px;
    color: #6c757d;
    font-weight: 500;
}

.ws-credits-value {
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
}

/* User Tickets */
.ws-user-tickets {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.ws-user-tickets h3 {
    margin: 0;
    padding: 25px 30px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    font-size: 20px;
    color: #495057;
}

.ws-tickets-list {
    padding: 20px;
}

.ws-ticket-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ws-ticket-item:hover {
    background: #e9ecef;
}

.ws-ticket-numbers {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.ws-ticket-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.ws-ticket-date {
    font-size: 12px;
    color: #6c757d;
}

/* Credit Purchase Modal */
.ws-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.ws-modal.active {
    display: flex;
}

.ws-modal-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.ws-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.ws-modal-title {
    margin: 0;
    font-size: 20px;
    color: #495057;
}

.ws-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ws-modal-close:hover {
    color: #dc3545;
}

/* Payment Form */
.ws-payment-form {
    margin-bottom: 20px;
}

.ws-payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.ws-payment-option {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ws-payment-option:hover {
    border-color: #667eea;
    background: #f8f9ff;
}

.ws-payment-option.selected {
    border-color: #667eea;
    background: #667eea;
    color: white;
}

.ws-payment-option input[type="radio"] {
    display: none;
}

/* Payment QR Code */
.ws-payment-qr {
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.ws-payment-qr img {
    max-width: 200px;
    height: auto;
}

.ws-payment-address {
    font-family: 'Courier New', monospace;
    background: #e9ecef;
    padding: 10px;
    border-radius: 4px;
    margin: 10px 0;
    word-break: break-all;
    font-size: 12px;
}

/* Status Messages */
.ws-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.ws-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.ws-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.ws-message.warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.ws-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Loading States */
.ws-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #667eea;
    border-radius: 50%;
    animation: ws-spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes ws-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form Actions */
.ws-form-actions {
    margin-top: 32px;
    text-align: center;
}

/* Secondary Button */
.ws-btn-secondary {
    background: #4a5568;
    color: white;
    margin-top: 12px;
}

.ws-btn-secondary:hover {
    background: #2d3748;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 85, 104, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .ws-auth-form {
        margin: 20px;
        border-radius: 8px;
    }
    
    .ws-auth-content,
    .ws-auth-panel {
        padding: 24px;
    }
    
    .ws-auth-tab {
        padding: 16px 20px;
        font-size: 14px;
    }
    
    .ws-profile-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .ws-profile-stats {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .ws-profile-actions {
        flex-direction: column;
        padding: 20px;
    }
    
    .ws-user-credits {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .ws-ticket-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .ws-ticket-info {
        align-items: flex-start;
    }
    
    .ws-modal-content {
        margin: 20px;
        padding: 20px;
    }
    
    .ws-payment-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Dark Mode Support - Enhanced for better contrast */
@media (prefers-color-scheme: dark) {
    .ws-auth-form {
        background: #1a202c;
        border: 1px solid #4a5568;
    }
    
    .ws-auth-tabs {
        background: #2d3748;
        border-bottom-color: #4a5568;
    }
    
    .ws-auth-tab {
        color: #a0aec0;
    }
    
    .ws-auth-tab:hover {
        background: #4a5568;
        color: #e2e8f0;
    }
    
    .ws-auth-tab.active {
        background: #6a5acd;
        color: white;
    }
    
    .ws-auth-panel {
        background: #1a202c;
    }
    
    .ws-form-group input {
        background: #2d3748;
        border-color: #4a5568;
        color: #e2e8f0;
    }
    
    .ws-form-group input:focus {
        background: #2d3748;
        border-color: #6a5acd;
    }
    
    .ws-form-group label {
        color: #e2e8f0;
    }
    
    .ws-form-help {
        color: #a0aec0;
    }
    
    .ws-forgot-password-link {
        color: #6a5acd;
    }
    
    .ws-form-links {
        border-top-color: #4a5568;
    }
}

/* Wallet Management Styles */
.ws-user-wallet {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.ws-user-wallet h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 20px;
}

.ws-user-wallet > p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.ws-wallet-form {
    margin-bottom: 30px;
}

.ws-form-help {
    font-size: 12px;
    color: #a0aec0;
    margin-top: 8px;
    font-style: italic;
    opacity: 0.8;
}

.ws-wallet-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #0073aa;
}

.ws-wallet-info h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
}

.ws-wallet-details p {
    margin: 8px 0;
    color: #555;
}

.ws-wallet-details strong {
    color: #333;
    min-width: 80px;
    display: inline-block;
}

.ws-wallet-details code {
    background: #e9ecef;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    word-break: break-all;
}

/* Withdrawal Form Styles */
.ws-withdrawal-form {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-top: 20px;
}

.ws-withdrawal-form h4 {
    margin: 0 0 15px 0;
    color: #333;
}

.ws-withdrawal-amount {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.ws-withdrawal-amount input {
    flex: 1;
    max-width: 200px;
}

.ws-withdrawal-amount .ws-currency-display {
    font-weight: bold;
    color: #0073aa;
    min-width: 60px;
}

.ws-withdrawal-info {
    background: #e7f3ff;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    border-left: 4px solid #0073aa;
}

.ws-withdrawal-info p {
    margin: 5px 0;
    color: #333;
}

.ws-withdrawal-info .ws-min-amount {
    color: #d63384;
    font-weight: bold;
}

/* Wallet Address Validation */
.ws-wallet-address-valid {
    border-color: #28a745 !important;
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.2);
}

.ws-wallet-address-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.2);
}

.ws-validation-message {
    font-size: 12px;
    margin-top: 5px;
    padding: 5px 8px;
    border-radius: 3px;
}

.ws-validation-message.valid {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.ws-validation-message.invalid {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Wallet Currency Icons */
.ws-currency-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.ws-currency-option:hover {
    background: #f8f9fa;
}

.ws-currency-option.selected {
    background: #e7f3ff;
    border: 1px solid #0073aa;
}

.ws-currency-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    color: white;
}

.ws-currency-icon.usdt { background: #26a17b; }
.ws-currency-icon.btc { background: #f7931a; }
.ws-currency-icon.eth { background: #627eea; }
.ws-currency-icon.ltc { background: #bfbbbf; }
.ws-currency-icon.bch { background: #0ac18e; }
.ws-currency-icon.xrp { background: #23292f; }
.ws-currency-icon.ada { background: #0033ad; }
.ws-currency-icon.dot { background: #e6007a; }

/* Responsive Design for Wallet */
@media (max-width: 768px) {
    .ws-user-wallet {
        padding: 15px;
        margin: 10px;
    }
    
    .ws-wallet-details code {
        font-size: 10px;
        padding: 1px 4px;
    }
    
    .ws-withdrawal-amount {
        flex-direction: column;
        align-items: stretch;
    }
    
    .ws-withdrawal-amount input {
        max-width: none;
    }
}

/* Account Management Styles */
.ws-user-account {
    max-width: 800px;
    margin: 0 auto;
    background: #2d3748;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    overflow: hidden;
    color: #e2e8f0;
}

.ws-account-header {
    background: linear-gradient(135deg, #6a5acd 0%, #4c63d2 100%);
    color: white;
    padding: 40px;
    text-align: center;
}

.ws-account-header h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
}

.ws-account-tabs {
    display: flex;
    background: #1a202c;
    border-bottom: 1px solid #4a5568;
}

.ws-tab-btn {
    flex: 1;
    padding: 24px 20px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #a0aec0;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ws-tab-btn:hover {
    background: #2d3748;
    color: #e2e8f0;
}

.ws-tab-btn.active {
    color: #6a5acd;
    border-bottom-color: #6a5acd;
    background: #2d3748;
    font-weight: 700;
}

.ws-tab-content {
    display: none;
    padding: 48px;
    background: #2d3748;
}

.ws-tab-content.active {
    display: block;
}

.ws-tab-content h3 {
    margin-top: 0;
    margin-bottom: 36px;
    color: #e2e8f0;
    font-size: 1.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Account Settings Form Elements */
.ws-user-account .ws-form-group {
    margin-bottom: 28px;
}

.ws-user-account .ws-form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: #e2e8f0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ws-user-account .ws-form-group input[type="text"],
.ws-user-account .ws-form-group input[type="email"],
.ws-user-account .ws-form-group input[type="password"],
.ws-user-account .ws-form-group input[type="number"] {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #4a5568;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #4a5568;
    color: #e2e8f0;
    font-weight: 500;
}

.ws-user-account .ws-form-group input:focus {
    outline: none;
    border-color: #6a5acd;
    box-shadow: 0 0 0 3px rgba(106, 90, 205, 0.2);
    background: #2d3748;
}

.ws-user-account .ws-form-group input::placeholder {
    color: #a0aec0;
    opacity: 0.8;
}

.ws-user-account .ws-form-actions {
    margin-top: 40px;
    text-align: center;
}

.ws-user-account .ws-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 52px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    max-width: 300px;
}

.ws-user-account .ws-btn-primary {
    background: #6a5acd;
    color: white;
    box-shadow: 0 4px 15px rgba(106, 90, 205, 0.3);
}

.ws-user-account .ws-btn-primary:hover {
    background: #5a4fcf;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(106, 90, 205, 0.4);
}

/* Security Tab Styles */
.ws-security-info {
    margin-bottom: 40px;
}

.ws-security-info h4 {
    color: #e2e8f0;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.ws-activity-list {
    background: #1a202c;
    border-radius: 10px;
    padding: 24px;
    border: 1px solid #4a5568;
}

.ws-activity-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #4a5568;
}

.ws-activity-item:last-child {
    border-bottom: none;
}

.ws-activity-time {
    color: #a0aec0;
    font-size: 0.9rem;
}

.ws-activity-action {
    color: #e2e8f0;
    font-weight: 500;
}

.ws-security-actions h4 {
    color: #e2e8f0;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Forgot Password Styles */
.ws-forgot-password-link {
    color: #6a5acd;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.ws-forgot-password-link:hover {
    color: #5a4fcf;
    text-decoration: underline;
}

.ws-form-links {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #4a5568;
}

#forgot-panel h3 {
    text-align: center;
    margin-bottom: 16px;
    color: #e2e8f0;
    font-size: 24px;
    font-weight: 600;
}

#forgot-panel p {
    text-align: center;
    color: #a0aec0;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Social Login Styles */
.ws-social-login {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.ws-social-divider {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.ws-social-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
}

.ws-social-divider span {
    background: white;
    padding: 0 15px;
    color: #6b7280;
    font-size: 0.9rem;
}

.ws-social-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.ws-social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    color: #374151;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ws-social-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.ws-google-btn {
    color: #ea4335;
}

.ws-facebook-btn {
    color: #1877f2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ws-account-tabs {
        flex-direction: column;
    }
    
    .ws-tab-btn {
        border-bottom: 1px solid #4a5568;
        border-right: none;
        padding: 20px;
    }
    
    .ws-tab-btn.active {
        border-bottom-color: #6a5acd;
        border-right: none;
    }
    
    .ws-tab-content {
        padding: 32px 24px;
    }
    
    .ws-social-buttons {
        flex-direction: column;
    }
    
    .ws-activity-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* Social Login Disabled Notice */
.ws-social-login-disabled {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-align: center;
}

.ws-social-login-disabled .ws-notice {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
    font-style: italic;
}

/* Social Login Status Indicator */
.ws-social-login-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 10px;
}

.ws-social-login-status.enabled {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.ws-social-login-status.disabled {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.ws-social-login-status .ws-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.ws-social-login-status.enabled .ws-status-dot {
    background: #28a745;
}

.ws-social-login-status.disabled .ws-status-dot {
    background: #dc3545;
}

/* Referral System Styles */
.ws-user-referrals {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.ws-referrals-header {
    text-align: center;
    margin-bottom: 30px;
}

.ws-referrals-header h2 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 2rem;
}

.ws-referrals-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

/* Referral Stats */
.ws-referral-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.ws-referral-stats .ws-stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.ws-referral-stats .ws-stat-card:hover {
    transform: translateY(-5px);
}

.ws-referral-stats .ws-stat-card h3 {
    margin: 0 0 15px 0;
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

.ws-referral-stats .ws-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

/* Referral Link Section */
.ws-referral-link-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 1px solid #e9ecef;
}

.ws-referral-link-section h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.ws-referral-link-container {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.ws-referral-link-container input[type="text"] {
    flex: 1;
    min-width: 300px;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    color: #495057;
}

.ws-referral-link-container input[type="text"]:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.ws-referral-link-container .ws-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.ws-referral-link-container .ws-btn-primary {
    background: #667eea;
    color: white;
}

.ws-referral-link-container .ws-btn-primary:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
}

.ws-referral-link-container .ws-btn-secondary {
    background: #6c757d;
    color: white;
}

.ws-referral-link-container .ws-btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* Referrals List Section */
.ws-referrals-list-section {
    margin-bottom: 40px;
}

.ws-referrals-list-section h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.ws-referrals-list {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.ws-no-referrals {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
    font-style: italic;
}

/* Referrals Table */
.ws-referrals-table {
    width: 100%;
}

.ws-referral-header {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 1fr;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    font-weight: 600;
    color: #495057;
}

.ws-referral-row {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 1fr;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #f1f3f4;
    transition: background-color 0.3s ease;
}

.ws-referral-row:hover {
    background: #f8f9fa;
}

.ws-referral-row:last-child {
    border-bottom: none;
}

.ws-referral-col {
    display: flex;
    align-items: center;
    color: #495057;
}

/* Referral Status */
.ws-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ws-status-rewarded {
    background: #d4edda;
    color: #155724;
}

.ws-status-pending {
    background: #fff3cd;
    color: #856404;
}

/* Referral Info */
.ws-referral-info {
    background: #e3f2fd;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #2196f3;
}

.ws-referral-info h4 {
    color: #1976d2;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.ws-referral-info ol {
    margin: 0;
    padding-left: 20px;
    color: #424242;
}

.ws-referral-info li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Loading State */
.ws-loading {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.ws-loading::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-top: 2px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .ws-referral-stats {
        grid-template-columns: 1fr;
    }
    
    .ws-referral-link-container {
        flex-direction: column;
    }
    
    .ws-referral-link-container input[type="text"] {
        min-width: auto;
    }
    
    .ws-referral-header,
    .ws-referral-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .ws-referral-header {
        display: none;
    }
    
    .ws-referral-row {
        border: 1px solid #e9ecef;
        border-radius: 8px;
        margin-bottom: 10px;
        padding: 15px;
    }
    
    .ws-referral-col {
        justify-content: space-between;
    }
    
    .ws-referral-col::before {
        content: attr(data-label);
        font-weight: 600;
        color: #495057;
    }
}

/* Admin Settings Tabs */
.ws-settings-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0;
}

.ws-settings-tabs .ws-tab-btn {
    padding: 12px 20px;
    border: none;
    background: #f8f9fa;
    color: #6c757d;
    cursor: pointer;
    border-radius: 8px 8px 0 0;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ws-settings-tabs .ws-tab-btn:hover {
    background: #e9ecef;
    color: #495057;
}

.ws-settings-tabs .ws-tab-btn.active {
    background: #667eea;
    color: white;
}


/* Reset Password Form */
.ws-reset-password {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.ws-reset-header {
    text-align: center;
    margin-bottom: 30px;
}

.ws-reset-header h2 {
    color: #495057;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
}

.ws-reset-header p {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.5;
}

.ws-reset-password-form {
    margin-bottom: 20px;
}

.ws-reset-password-form .ws-form-group {
    margin-bottom: 20px;
}

.ws-reset-password-form .ws-form-actions {
    margin-top: 30px;
    text-align: center;
}

.ws-reset-password-form .ws-form-links {
    margin-top: 20px;
    text-align: center;
}

.ws-reset-password-form .ws-back-to-login {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.ws-reset-password-form .ws-back-to-login:hover {
    color: #5a67d8;
    text-decoration: underline;
}

.ws-error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #f5c6cb;
    margin-bottom: 20px;
    text-align: center;
}

.ws-error-message p {
    margin: 0;
    font-weight: 500;
}

/* Dynamic Menu Styles */
.ws-dynamic-menu-item {
    display: inline-block;
    transition: all 0.3s ease;
}

/* Menu item in WordPress navigation */
.menu-item.ws-dynamic-menu-item {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item.ws-dynamic-menu-item a {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    color: inherit !important;
}


.ws-menu-credits {
    background: rgba(255, 255, 255, 0.2) !important;
    padding: 1px 4px !important;
    border-radius: 3px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    backdrop-filter: blur(4px) !important;
    color: white !important;
}

.ws-menu-text {
    font-weight: 500 !important;
    color: inherit !important;
}

.ws-menu-user-icon {
    width: 18px !important;
    height: 18px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
    margin-right: 5px;
    vertical-align: bottom;
}

.ws-default-icon {
    width: 16px !important;
    height: 16px !important;
    opacity: 0.8 !important;
    transition: opacity 0.3s ease !important;
    display: inline-block !important;
}

.ws-dynamic-menu-item:hover .ws-default-icon,
.ws-login-link:hover .ws-default-icon,
.ws-account-link:hover .ws-default-icon {
    opacity: 1 !important;
}

/* Ensure proper spacing and alignment */
.menu-item.ws-dynamic-menu-item a svg,
.menu-item.ws-dynamic-menu-item a img {
    margin: 0 !important;
    vertical-align: middle !important;
}

/* Override theme-specific styles that might interfere */
.menu-item.ws-dynamic-menu-item {
    float: none !important;
    position: relative !important;
}

.menu-item.ws-dynamic-menu-item a {
    position: relative !important;
    float: none !important;
    line-height: normal !important;
}

/* Ensure icons are properly aligned */
.menu-item.ws-dynamic-menu-item a .ws-menu-user-icon,
.menu-item.ws-dynamic-menu-item a .ws-default-icon {
    vertical-align: middle !important;
    margin-right: 8px !important;
}

/* Fix for themes that use flexbox on menu items */
.menu-item.ws-dynamic-menu-item a {
    justify-content: flex-start !important;
    align-items: center !important;
}

/* Additional theme compatibility fixes */
.menu-item.ws-dynamic-menu-item a:before,
.menu-item.ws-dynamic-menu-item a:after {
    display: none !important;
}

/* Ensure proper display in various theme contexts */
.ws-dynamic-menu-item,
.menu-item.ws-dynamic-menu-item {
    display: inline-block !important;
    vertical-align: middle !important;
}

/* Fix for themes that add extra spacing */
.menu-item.ws-dynamic-menu-item a span {
    display: inline-block !important;
    vertical-align: middle !important;
}

/* Responsive menu adjustments */
@media (max-width: 768px) {
    .menu-item.ws-dynamic-menu-item a {
        padding: 5px 10px !important;
        font-size: 0.85rem !important;
        gap: 4px !important;
    }
    
    .ws-menu-credits {
        font-size: 0.7rem !important;
        padding: 1px 3px !important;
    }
    
    .ws-menu-user-icon {
        width: 18px !important;
        height: 18px !important;
    }
    
    .ws-default-icon {
        width: 14px !important;
        height: 14px !important;
    }
}

