/* MWT Professional Admin UI */
.mwt-admin-wrap { margin: 20px 20px 0 0; font-family: 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif; }
.mwt-header { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); margin-bottom: 20px; display: flex; justify-content: space-between; align-items: center; }
.mwt-header h1 { margin: 0; font-weight: 700; color: #1d2327; }

/* Dashboard Cards */
.mwt-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-bottom: 30px; }
.mwt-stat-card { background: #fff; padding: 25px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border-bottom: 4px solid #2271b1; transition: transform 0.3s ease; }
.mwt-stat-card:hover { transform: translateY(-5px); }
.mwt-stat-card h3 { margin: 0 0 10px 0; font-size: 14px; color: #646970; text-transform: uppercase; letter-spacing: 1px; }
.mwt-stat-card .mwt-number { font-size: 32px; font-weight: 800; color: #1d2327; display: flex; align-items: center; gap: 10px; }
.mwt-stat-card .dashicons { font-size: 30px; width: 30px; height: 30px; color: #2271b1; }

/* Settings Tabs */
.mwt-tabs-nav { display: flex; gap: 5px; margin-bottom: -1px; }
.mwt-tab-link { padding: 12px 25px; background: #e2e8f0; border-radius: 8px 8px 0 0; text-decoration: none; color: #64748b; font-weight: 600; border: 1px solid #cbd5e1; border-bottom: none; cursor: pointer; }
.mwt-tab-link.active { background: #fff; color: #2271b1; border-color: #cbd5e1; border-bottom: 2px solid #fff; z-index: 10; }
.mwt-tab-content { background: #fff; padding: 30px; border-radius: 0 8px 8px 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border: 1px solid #cbd5e1; display: none; }
.mwt-tab-content.active { display: block; }

/* Form Elements */
.mwt-admin-table th { padding: 20px 10px; font-weight: 600; width: 250px; }
.mwt-admin-table input[type="text"], .mwt-admin-table input[type="email"], .mwt-admin-table select, .mwt-admin-table textarea {
    border-radius: 6px; border: 1px solid #cbd5e1; padding: 10px; width: 100%; max-width: 450px;
}