:root{ --bg:#f3f6fb; --card:#fff; --muted:#6b7280; --accent:#2563eb; --danger:#ef4444; --success:#10b981; --soft:#eef5ff; --radius:12px; font-family: Inter, UI-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; }
*{box-sizing:border-box}
html,body{height:100%;margin:0;background:linear-gradient(180deg,#eef6ff 0%, #f8fbff 100%);color:#0f172a}
.wrap{max-width:600px;margin:40px auto;padding:18px;display:block;}
.left{display:none;}
.guide{background:#fff;border-radius:12px;padding:18px;box-shadow:0 8px 30px rgba(15,23,42,0.06)}
.guide h3{margin:6px 0 12px;font-size:18px}
.panel{background:var(--card);border-radius:14px;padding:26px;box-shadow:0 12px 36px rgba(15,23,42,0.06)}
.panel h1{margin:0 0 14px;font-size:26px;text-align:center}
.form-field{margin-bottom:14px}
label{display:block;font-size:13px;color:var(--muted);margin-bottom:6px}
input[type=text], input[type=tel], input[type=email], textarea, select{width:100%;padding:12px;border-radius:10px;border:1px solid #e6e8ee;background:#fff;font-size:14px}
textarea {
  min-height: 50px;
  resize: vertical;
}
/* remove border around staff login password */
#staffPw {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  background: #f8fafc;
  padding: 12px;
  border-radius: 10px;
  width: 100%;
}
.success-message {
    display: none;
    background: #e8fdf4;
    color: #05603a;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 15px;
    margin-bottom: 18px;
    border: 1px solid #aaf0cd;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.success-message.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.submit{width:100%;padding:14px;border-radius:10px;background:var(--accent);color:#fff;font-weight:700;border:0;cursor:pointer;margin-top:8px}
/* add to style.css */
.link-btn {
  display:block;
  text-align:center;
  margin-top:10px;
  color:var(--muted);
  text-decoration:none;
  cursor: pointer;            /* ← add this */
}
.link-btn:hover {             /* optional nice hover */
  color: var(--accent);
  text-decoration: underline;
}
#logoutBtn {
  background: #e5e7eb;          /* soft gray */
  color: #374151;               /* dark gray text */
  border: none !important;      /* no border */
  padding: 10px 18px;           /* spacing */
  border-radius: 8px;          /* smooth curves */
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s ease;
}
#logoutBtn:hover {
  background: #d1d5db;          /* slightly darker on hover */
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;   /* IMPORTANT: This is the fix */
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-card{width:420px;background:var(--card);border-radius:12px;padding:22px;box-shadow:0 18px 48px rgba(2,6,23,0.12)}
.modal h2{text-align:center;margin:4px 0 12px}
.modal .btn{width:100%;padding:12px;border-radius:8px;border:0;margin-top:10px}
.btn.gray{background:#f3f4f6}
.dashboard{display:flex;flex-direction:column;gap:16px}
.stats{display:flex;gap:12px}
.stat{flex:1;background:linear-gradient(90deg,#fff,#fbfdff);padding:16px;border-radius:12px;border:1px solid #f1f5f9}
.stat .n{font-size:22px;font-weight:800;color:#0f172a}
.card{background:#fff;border-radius:12px;padding:14px;border:1px solid #eef2ff}
.request{background:#fff;border-radius:10px;padding:14px;border:1px solid #eceff6;margin-bottom:12px;word-wrap: break-word;
  overflow-wrap: anywhere;}
.meta{color:var(--muted);font-size:13px;margin-top:8px;word-wrap: break-word;
  overflow-wrap: anywhere;max-width:100%;white-space:normal;}
.actions{margin-top:12px}
.actions button{padding:8px 12px;border-radius:8px;border:0;cursor:pointer;margin-right:8px}
.btn-complete{background:var(--success);color:#fff}
.btn-delete{background:var(--danger);color:#fff}
@media (max-width:1050px){.wrap{grid-template-columns:1fr;}.panel{order:2}}
/* PREMIUM FOOTER */
.premium-footer {
    width: 100%;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.04);
    margin-top: 60px;
}

.footer-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #475569;
    font-size: 15px;

}

.footer-logo {
    width: 38px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.footer-title {
    font-weight: 100;
    margin-bottom: 6px;
    color: #1e293b;
}

.footer-address,
.footer-support,
.footer-copy {
    margin: 4px 0;
    font-size: 13px;
}

.footer-support a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.footer-support a:hover {
    text-decoration: underline;
}

.footer-copy {
    margin-top: 10px;
    font-size: 12px;
    opacity: 0.7;
}











