/* Simple responsive Arabic styles */
:root{--blue:#0d6efd;--green:#16a34a;--red:#dc2626}
body{font-family:Tahoma,Arial,sans-serif;background:#f3f7fb;margin:0;color:#111}
.top{background:var(--blue);color:#fff;padding:12px 16px;display:flex;justify-content:space-between;align-items:center}
.top h1{margin:0;font-size:18px}
.top .admin-link, .top .logout{color:#fff;text-decoration:none}
.wrap{max-width:900px;margin:18px auto;padding:12px}
.card{background:#fff;padding:12px;border-radius:10px;margin-bottom:12px;box-shadow:0 6px 18px rgba(10,20,40,0.06)}
.form-card{max-width:520px;margin:auto}
.search-form{display:flex;gap:8px;align-items:center;flex-wrap:wrap}
.search-form input{flex:1;padding:10px;border-radius:8px;border:1px solid #ddd}
.search-form button{padding:10px 14px;border-radius:8px;border:none;background:var(--blue);color:#fff}
.table-wrap{overflow:auto}
table{width:100%;border-collapse:collapse}
th,td{padding:8px;border-bottom:1px solid #eee;text-align:right}
.ready{background:#ecfdf5}
.not-ready{background:#fff1f2}
.green{color:var(--green);font-weight:700}
.red{color:var(--red);font-weight:700}
.muted{color:#64748b}
.error{color:#b91c1c;background:#ffe4e4;padding:8px;border-radius:6px;margin-bottom:8px}
.notfound{padding:12px;background:#fff3cd;border-radius:8px;color:#92400e}
.foot{margin:18px;text-align:center;color:#64748b}
@media(max-width:600px){.search-form{flex-direction:column}.top h1{font-size:16px}}