/* MCSBazaar Auth Global Styles */
.mcs-auth-container {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    background: #f0f2f5;
}

.mcs-form-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    max-width: 400px;
    width: 100%;
}

.mcs-form-card h2 { margin-bottom: 10px; color: #333; font-weight: 600; }
.mcs-form-card p { color: #777; margin-bottom: 25px; font-size: 0.9rem; }

/* Input Styling */
.mcs-input-group { margin-bottom: 18px; text-align: left; }
.mcs-input-group label { display: block; margin-bottom: 6px; font-weight: 500; color: #444; font-size: 0.85rem; }
.mcs-input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border 0.3s;
}
.mcs-input-group input:focus { border-color: #4e54c8; outline: none; }

/* Dashboard UI */
.mcs-dashboard-wrapper {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--mcs-shadow);
}

.mcs-header {
    background: linear-gradient(135deg, #4e54c8 0%, #8f94fb 100%);
    padding: 50px 20px;
    color: #fff;
    text-align: center;
}

.mcs-avatar-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 5px solid rgba(255,255,255,0.2);
    margin-bottom: 15px;
    object-fit: cover;
}

.mcs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 30px;
    background: #f8f9fa;
}

/* Wallet Card Specific */
.mcs-wallet-card {
    background: #1a1a1a !important;
    color: #fff !important;
    position: relative;
    overflow: hidden;
}
.wallet-balance {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    color: #00d2ff;
    margin: 10px 0;
}
.wallet-icon { font-size: 30px; opacity: 0.3; position: absolute; right: 20px; top: 20px; }

/* Action List */
.mcs-action-list { list-style: none; padding: 0; margin-top: 15px; }
.mcs-action-list li {
    padding: 12px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
}
.mcs-action-list li:hover { background: #f0f0f0; padding-left: 18px; }
.mcs-action-list li .dashicons { margin-right: 10px; color: #4e54c8; }
.text-danger { color: #ff4757 !important; }

/* Message box */
.mcs-msg { margin-top: 15px; padding: 10px; border-radius: 5px; display: none; font-size: 0.85rem; }
.mcs-msg.success { background: #d4edda; color: #155724; display: block; }
.mcs-msg.error { background: #f8d7da; color: #721c24; display: block; }

.mcs-hidden-section { display: none; border-top: 5px solid #4e54c8; margin-top: 0; }