:root {
    --gold: #d4af37;
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
}

body {
    margin: 0; padding: 0; font-family: 'Tajawal', sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white; min-height: 100vh; direction: rtl;
    display: flex; justify-content: center; align-items: center;
}

.dashboard-container {
    width: 100%; max-width: 650px; padding: 20px;
}

.card {
    background: var(--glass); backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--border); border-radius: 30px;
    padding: 35px; box-shadow: 0 25px 50px rgba(0,0,0,0.6);
    text-align: center;
}

input, select {
    width: 100%; padding: 15px; margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid var(--border) !important;
    border-radius: 15px; color: white !important;
    outline: none; box-sizing: border-box;
    font-family: 'Tajawal', sans-serif; appearance: none;
}

select option { background-color: #1e293b; color: white; }

.primary-btn {
    width: 100%; padding: 16px; border-radius: 15px; border: none;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #000; font-weight: 800; cursor: pointer; transition: 0.3s;
}

/* زر الواتساب الجديد */
.whatsapp-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 16px; border-radius: 15px; border: none;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white; font-weight: 800; cursor: pointer; transition: 0.3s;
    text-decoration: none; margin-top: 15px;
}
.whatsapp-btn:hover { transform: scale(1.02); box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3); }

.logout-btn {
    background: rgba(239, 68, 68, 0.1); color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 10px 25px; border-radius: 12px; cursor: pointer;
    font-weight: bold; margin-top: 25px; transition: 0.3s;
}

.menu-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-top: 25px; }
.menu-item {
    background: rgba(255,255,255,0.04); border: 1px solid var(--border);
    padding: 22px; border-radius: 18px; cursor: pointer; transition: 0.3s;
    display: flex; align-items: center; justify-content: space-between;
    font-weight: 700; font-size: 18px;
}
.menu-item:hover { border-color: var(--gold); background: rgba(212, 175, 55, 0.08); transform: scale(1.02); }

.hidden { display: none; }
table { width: 100%; border-collapse: collapse; margin-top: 20px; }
th, td { padding: 15px; border-bottom: 1px solid var(--border); text-align: center; }
th { color: var(--gold); font-size: 14px; }