:root {
  --main-bg: #000815;
  --sec-bg: #021022;
  --cards: #021022;
  --medical-blue: #38bdf8;
  --medical-green: #10b981;
  --danger: #ef4444;
  --text: #e5e7eb;
  --strong-shadow: 0 0 40px rgba(56, 191, 248, 0.795);
  --mid-shadow: 0 0 25px rgba(56, 191, 248, 0.521);
  --multi-shadow:
    0 0 10px rgba(56, 191, 248, 0.425), 0 0 20px rgba(56, 189, 248, 0.15),
    0 0 40px rgba(56, 189, 248, 0.1);
}

body {
  background: var(--main-bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  height: 100vh;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-weight: bold;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  ::-webkit-scrollbar {
    display: none;
    transition: 0.5s;
  }
}

a {
  text-decoration: none;
  color: var(--text);
  transition: 0.3s;
}
.card {
  background: var(--cards);
  border: 1px solid var(--medical-blue);
  border-radius: 10px;
  padding: 20px;
  transition: 0.3s;
  box-shadow: var(--multi-shadow);
  cursor: pointer;
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--medical-green);
}
/*navbar*/
/* =========================
   PREMIUM NAVBAR
========================= */

.navbar {
  position: fixed;

  top: 20px;

  left: 50%;

  transform: translateX(-50%);

  width: calc(100% - 60px);

  max-width: 1450px;

  height: 85px;

  padding: 0 30px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  background: rgba(2, 16, 34, 0.55);

  border: 1px solid rgba(56, 189, 248, 0.12);

  backdrop-filter: blur(16px);

  border-radius: 24px;

  box-shadow: 0 0 35px rgba(56, 189, 248, 0.08);

  z-index: 999;

  transition: 0.3s;
}

/* HOVER */

.navbar:hover {
  border-color: rgba(56, 189, 248, 0.22);

  box-shadow: 0 0 45px rgba(56, 189, 248, 0.12);
}

/* LINKS */

.links {
  display: flex;

  align-items: center;

  gap: 30px;
}

.links a {
  position: relative;

  color: #cbd5e1;

  font-size: 15px;

  font-weight: 600;

  transition: 0.3s;
}

/* HOVER */

.links a:hover {
  color: white;
}

/* LINE */

.links a::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -8px;

  width: 0;

  height: 2px;

  background: var(--medical-blue);

  border-radius: 999px;

  transition: 0.3s;
}

.links a:hover::after {
  width: 100%;
}

/* DISCORD BUTTON */

.discord-login-btn {
  height: 52px;

  padding: 0 22px;

  border: none;

  border-radius: 16px;

  background: rgba(88, 101, 242, 0.15);

  color: #c7d2fe;

  display: flex;

  align-items: center;

  gap: 12px;

  font-weight: bold;

  cursor: pointer;

  transition: 0.3s;

  border: 1px solid rgba(88, 101, 242, 0.18);
}

.discord-login-btn:hover {
  background: #5865f2;

  color: white;

  transform: translateY(-3px);

  box-shadow: 0 0 30px rgba(88, 101, 242, 0.35);
}

/* USER */

.user-box {
  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(255, 255, 255, 0.05);

  border-radius: 18px;

  padding: 10px 14px;

  transition: 0.3s;
}

.user-box:hover {
  border-color: rgba(56, 189, 248, 0.2);
}

/* MOBILE */

.mobile-menu-btn {
  display: none;

  width: 50px;

  height: 50px;

  border-radius: 16px;

  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(255, 255, 255, 0.08);

  color: white;

  cursor: pointer;

  align-items: center;

  justify-content: center;

  font-size: 20px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .navbar {
    padding: 0 20px;
  }

  .links {
    position: absolute;

    top: 100px;

    left: 0;

    width: 100%;

    background: rgba(2, 16, 34, 0.96);

    border: 1px solid rgba(56, 189, 248, 0.12);

    border-radius: 24px;

    padding: 25px;

    display: flex;

    flex-direction: column;

    gap: 22px;

    opacity: 0;

    visibility: hidden;

    transform: translateY(-15px);

    transition: 0.3s;
  }

  .links.active {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
  }

  .mobile-menu-btn {
    display: flex;
  }
}

@media (max-width: 768px) {
  .navbar {
    width: calc(100% - 24px);

    top: 12px;

    padding: 0 14px;
  }

  .discord-login-btn span {
    display: none;
  }

  .user-info {
    display: none;
  }
}
/* =========================
   HERO SECTION
========================= */

.hero {
  min-height: 100vh;

  position: relative;

  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 140px 8% 100px;

  overflow: hidden;
}

/* BACKGROUND */

.hero-bg {
  position: absolute;

  inset: 0;

  z-index: -2;
}

.hero-bg img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.hero-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(0, 8, 21, 0.92),
    rgba(2, 16, 34, 0.88)
  );

  z-index: 1;
}

/* CONTENT */

.hero-content {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 50px;
}

/* TEXT */

.hero-text {
  max-width: 650px;

  z-index: 2;
}

.hero-badge {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(56, 189, 248, 0.12);

  color: var(--medical-blue);

  border: 1px solid rgba(56, 189, 248, 0.18);

  box-shadow: 0 0 20px rgba(56, 189, 248, 0.12);

  margin-bottom: 28px;

  font-size: 14px;

  letter-spacing: 1px;
}

/* TITLE */

.hero-text h1 {
  font-size: 82px;

  line-height: 1.05;

  margin-bottom: 25px;

  color: white;

  text-shadow: 0 0 30px rgba(56, 189, 248, 0.15);
}

/* DESCRIPTION */

.hero-text p {
  color: #cbd5e1;

  font-size: 18px;

  line-height: 1.9;

  margin-bottom: 40px;

  max-width: 580px;
}

/* BUTTONS */

.hero-buttons {
  display: flex;

  gap: 18px;

  flex-wrap: wrap;
}

.hero-btn {
  height: 60px;

  padding: 0 32px;

  border-radius: 18px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-weight: bold;

  transition: 0.3s;

  border: none;
}

/* PRIMARY */

.hero-btn.primary {
  background: var(--medical-blue);

  color: white;

  box-shadow: 0 0 30px rgba(56, 189, 248, 0.35);
}

.hero-btn.primary:hover {
  transform: translateY(-4px);

  box-shadow: 0 0 45px rgba(56, 189, 248, 0.5);
}

/* SECONDARY */

.hero-btn.secondary {
  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(255, 255, 255, 0.08);

  color: white;
}

.hero-btn.secondary:hover {
  transform: translateY(-4px);

  border-color: var(--medical-blue);

  box-shadow: 0 0 25px rgba(56, 189, 248, 0.15);
}

/* IMAGE */

.hero-image {
  position: relative;

  z-index: 2;
}

.hero-image img {
  width: 520px;

  max-width: 100%;

  filter: drop-shadow(0 0 40px rgba(56, 189, 248, 0.25));
}

/* STATS */

.hero-stats {
  display: flex;

  gap: 20px;

  flex-wrap: wrap;

  margin-top: 80px;

  z-index: 2;
}

/* CARD */

.hero-stat-card {
  min-width: 220px;

  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(56, 189, 248, 0.12);

  border-radius: 24px;

  padding: 28px;

  backdrop-filter: blur(10px);

  box-shadow: 0 0 25px rgba(56, 189, 248, 0.08);

  transition: 0.3s;
}

.hero-stat-card:hover {
  transform: translateY(-5px);

  border-color: rgba(56, 189, 248, 0.3);
}

.hero-stat-card h3 {
  font-size: 36px;

  color: white;

  margin-bottom: 10px;
}

.hero-stat-card p {
  color: #94a3b8;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .hero-text h1 {
    font-size: 65px;
  }
}

@media (max-width: 992px) {
  .hero {
    padding-top: 180px;
  }

  .hero-content {
    flex-direction: column;

    text-align: center;
  }

  .hero-text {
    display: flex;

    flex-direction: column;

    align-items: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image img {
    width: 400px;
  }

  .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 160px 20px 80px;
  }

  .hero-text h1 {
    font-size: 48px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-image img {
    width: 300px;
  }

  .hero-stat-card {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 38px;
  }
}
/*Head Management*/
.HM {
  margin: 40px 15px;
  margin-top: 60px;
  h2 {
    color: var(--medical-blue);
    text-shadow: var(--strong-shadow);
    font-size: 40px;
    font-weight: bold;
    text-align: center;
  }
}
.HMContainer {
  margin: 30px 15px;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  gap: 20px;

  align-items: stretch;

  .card {
    box-shadow: none;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    img {
      width: 100%;
      max-width: 240px;
      height: 280px;
      object-fit: contain;
    }
    h4 {
      color: var(--medical-blue);
      text-shadow: var(--mid-shadow);
      margin-bottom: 10px;
    }
    h3 {
      color: #10b981;
      text-shadow: var(--mid-shadow);
      margin: 5px;
      font-size: 17px;
      font-weight: bold;
    }
    p {
      color: var(--medical-blue);
      font-weight: bold;
    }
  }
}
/* =========================
   LEADERSHIP CARDS
========================= */

.HM {
  margin: 120px 6% 80px;
}

.HM h2 {
  text-align: center;

  font-size: 52px;

  color: white;

  margin-bottom: 60px;

  text-shadow: 0 0 30px rgba(56, 189, 248, 0.18);
}

/* GRID */

.HMContainer {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 30px;
}

/* CARD */

.leader-card {
  position: relative;

  overflow: hidden;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );

  border: 1px solid rgba(56, 189, 248, 0.12);

  border-radius: 30px;

  padding: 28px;

  backdrop-filter: blur(14px);

  box-shadow: 0 0 30px rgba(56, 189, 248, 0.08);

  transition: 0.4s;
}

/* HOVER */

.leader-card:hover {
  transform: translateY(-10px);

  border-color: rgba(56, 189, 248, 0.3);

  box-shadow: 0 0 45px rgba(56, 189, 248, 0.15);
}

/* GLOW */

.leader-card::before {
  content: "";

  position: absolute;

  width: 250px;

  height: 250px;

  background: rgba(56, 189, 248, 0.08);

  border-radius: 50%;

  top: -120px;

  right: -120px;

  filter: blur(40px);
}
.leader-card::first-of-type{
display : none !important;
}
/* TOP */

.leader-top {
  display: flex;

  justify-content: flex-end;

  margin-bottom: 20px;
}

/* BADGE */

.leader-badge {
  padding: 10px 18px;

  border-radius: 999px;

  font-size: 13px;

  font-weight: bold;

  letter-spacing: 1px;
}

/* CHIEF */

.leader-badge.chief {
  background: rgba(239, 68, 68, 0.12);

  color: #ef4444;

  box-shadow: 0 0 20px rgba(239, 68, 68, 0.12);
}
/* ASSISTANT */

.leader-badge.assistant {
  background: rgba(245, 158, 11, 0.12);

  color: #f59e0b;

  box-shadow: 0 0 20px rgba(245, 158, 11, 0.12);
}

/* PARAMEDIC */

.leader-badge.paramedic {
  background: rgba(56, 189, 248, 0.12);

  color: var(--medical-blue);

  box-shadow: 0 0 20px rgba(56, 189, 248, 0.12);
}
/* IMAGE */

.leader-image {
  display: flex;
transform: scale(1.1);
  justify-content: center;

  margin-bottom: 25px;
}

.leader-image img {
  width: 240px;

  height: 280px;

  object-fit: contain;

  filter: drop-shadow(0 0 30px rgba(56, 189, 248, 0.18));
}

/* INFO */

.leader-info {
  text-align: center;
}

.leader-info h3 {
  color: white;

  font-size: 28px;

  margin-bottom: 10px;
}

.leader-info h4 {
  color: var(--medical-blue);

  margin-bottom: 18px;

  font-size: 18px;
}

.leader-info p {
  color: #94a3b8;

  line-height: 1.8;

  font-size: 15px;
}

/* BOTTOM */

.leader-bottom {
  margin-top: 30px;

  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.05);

  display: flex;

  justify-content: space-between;

  gap: 20px;
}

/* STAT */

.leader-stat {
  display: flex;

  flex-direction: column;

  gap: 8px;
}

.leader-stat span {
  color: #64748b;

  font-size: 13px;
}

.leader-stat strong {
  color: white;

  font-size: 15px;
}

/* ONLINE */

.leader-stat .online {
  color: #10b981;

  background: rgba(16, 185, 129, 0.12);

  border: 1px solid rgba(16, 185, 129, 0.18);

  padding: 6px 12px;

  border-radius: 999px;

  width: fit-content;

  box-shadow: 0 0 18px rgba(16, 185, 129, 0.12);
}
.leader-stat .offline{
  padding: 6px 12px;

  border-radius: 999px;

  width: fit-content;


    box-shadow:

    0 0 12px rgba(255,77,77,.25);
    color: #ff4d4d !important;

    background: rgba(255, 77, 77, 0.15);

   border: 1px solid rgba(255, 77, 77, 0.4);
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .HM {
    margin: 90px 20px 60px;
  }

  .HM h2 {
    font-size: 38px;
  }

  .leader-card {
    padding: 24px;
  }

  .leader-image img {
    width: 200px;

    height: 240px;
  }
}
/* Medical Staff */

.MS > h2 {
  color: var(--medical-blue);
  text-shadow: var(--strong-shadow);
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.Medicalstaff .card h3 {
  /* margin: 10px 0; */
  color: var(--medical-blue);
  text-shadow: var(--mid-shadow);
  /* position: absolute;
    top: 20px;
    left: 20px; */
  position: relative;
  width: fit-content;
  font-family: "Noto Sans Arabic", sans-serif;
}
/* .Medicalstaff .card h3::before{
 width: 5px;
 height: 5px;
 background: transparent;
 border: 0 3px 3px 0 solid var(--medical-blue);
right: 0;
transform: translateX(-50%);
z-index: 3;
} */
.Medicalstaff .category {
  display: flex;
  height: 65px;
  margin: 20px;
  position: relative;
  flex-direction: column;
  padding: 10px;
  overflow: hidden;
  transition: 0.5s;
}
.CTopened {
  height: 500px !important;
  overflow-y: scroll !important;
}
.Medicalstaff .category .employees {
  display: flex;
  flex-direction: row;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  margin-top: 30px;
}
.Medicalstaff .category .employee {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 5px 0;
}
.Medicalstaff .category .employee img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.Medicalstaff .category .employee .name {
  color: var(--medical-blue);
  text-shadow: var(--mid-shadow);
}
.Medicalstaff .category .employee .callsign {
  color: var(--medical-blue);
  text-shadow: var(--mid-shadow);
}
.Medicalstaff .category .employee .callsign::before {
  content: "(";
  color: var(--medical-blue);
  text-shadow: var(--mid-shadow);
}
.Medicalstaff .category .employee .callsign::after {
  content: ")";
  color: var(--medical-blue);
  text-shadow: var(--mid-shadow);
}
/* =========================
   STAFF CATEGORY REDESIGN
========================= */

.staff-category {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );

  border: 1px solid rgba(56, 189, 248, 0.12);

  border-radius: 28px;

  padding: 28px;

  margin: 25px;

  backdrop-filter: blur(14px);

  box-shadow: 0 0 30px rgba(56, 189, 248, 0.08);

  transition: 0.3s;
}

.staff-category:hover {
  border-color: rgba(56, 189, 248, 0.28);

  box-shadow: 0 0 45px rgba(56, 189, 248, 0.14);

  transform: translateY(-5px);
}

/* HEADER */

.staff-category-header {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 20px;

  cursor: pointer;
}

/* TITLE */

.staff-category-header h3 {
  color: white;

  font-size: 30px;

  margin-bottom: 10px;
}

.staff-category-header p {
  color: #94a3b8;

  font-size: 15px;
}

/* STATS */

.staff-category-stats {
  display: flex;

  align-items: center;

  gap: 14px;
}

.staff-category-stats span {
  background: rgba(56, 189, 248, 0.12);

  color: var(--medical-blue);

  border: 1px solid rgba(56, 189, 248, 0.15);

  padding: 10px 16px;

  border-radius: 999px;

  font-size: 14px;

  font-weight: bold;
}

.staff-category-stats i {
  transform: rotate(0deg);
  width: 44px;

  height: 44px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(255, 255, 255, 0.05);

  color: white;

  transition: 0.3s;
}

/* EMPLOYEES */
.staff-employees {
  margin-top: 30px;

  display: flex;

  flex-direction: column;

  gap: 18px;

  max-height: 0;

  overflow: hidden;

  opacity: 0;

  transition:
    max-height 0.45s ease,
    opacity 0.3s ease;
}
/* OPEN */

.staff-category.active .staff-employees {
  max-height: 1000px;

  opacity: 1;
}

/* ROTATE ICON */

.staff-category.active .staff-category-stats i {
  transform: rotate(180deg);
}
/* MEMBER */

.staff-member {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 18px;

  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(255, 255, 255, 0.05);

  border-radius: 22px;

  padding: 18px;

  transition: 0.3s;
}

.staff-member:hover {
  border-color: rgba(56, 189, 248, 0.2);

  transform: translateX(6px);
}

/* IMAGE */

.staff-member img {
  width: 68px;

  height: 68px;

  border-radius: 50%;

  object-fit: cover;

  border: 2px solid rgba(56, 189, 248, 0.18);

  box-shadow: 0 0 18px rgba(56, 189, 248, 0.15);
}

/* INFO */

.staff-member-info {
  flex: 1;
}

.staff-member-info h4 {
  color: white;

  margin-bottom: 8px;

  font-size: 18px;
}

.staff-member-info span {
  color: #94a3b8;

  font-size: 14px;
}

/* STATUS */

.staff-status {
  padding: 10px 16px;

  border-radius: 999px;

  font-size: 13px;

  font-weight: bold;
}

/* ONLINE */

.staff-status.online {
  background: rgba(16, 185, 129, 0.12);

  color: #10b981;

  border: 1px solid rgba(16, 185, 129, 0.18);
}

/* OFFLINE */

.staff-status.offline {
  background: rgba(239, 68, 68, 0.12);

  color: #ef4444;

  border: 1px solid rgba(239, 68, 68, 0.18);
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .staff-category {
    padding: 22px;
  }

  .staff-category-header {
    flex-direction: column;

    align-items: flex-start;
  }

  .staff-category-header h3 {
    font-size: 24px;
  }

  .staff-member {
    flex-direction: column;

    align-items: flex-start;
  }

  .staff-status {
    width: 100%;

    text-align: center;
  }
}
/* =========================
   PREMIUM FOOTER
========================= */

.premium-footer {
  margin-top: 140px;

  position: relative;

  padding: 80px 6% 35px;

  background: linear-gradient(180deg, rgba(2, 16, 34, 0.6), rgba(0, 8, 21, 1));

  border-top: 1px solid rgba(56, 189, 248, 0.12);

  overflow: hidden;
}

/* GLOW */

.premium-footer::before {
  content: "";

  position: absolute;

  width: 500px;

  height: 500px;

  background: rgba(56, 189, 248, 0.06);

  border-radius: 50%;

  top: -250px;

  left: -150px;

  filter: blur(80px);
}

/* TOP */

.footer-top {
  display: grid;

  grid-template-columns: 1.4fr 1fr 1fr;

  gap: 60px;

  position: relative;

  z-index: 2;
}

/* BRAND */
.footer-brand {
  margin: 20px;
}
.footer-brand img {
  width: 170px;

  margin-bottom: 25px;
}

.footer-brand p {
  color: #94a3b8;

  line-height: 1.9;

  max-width: 420px;
}

/* TITLES */

.footer-links h3,
.footer-community h3 {
  color: white;

  margin-bottom: 25px;

  font-size: 22px;
}

/* LINKS */

.footer-links,
.footer-community {
  display: flex;

  flex-direction: column;

  gap: 18px;
}

.footer-links a,
.footer-community a {
  width: fit-content;

  color: #cbd5e1;

  transition: 0.3s;

  display: flex;

  align-items: center;

  gap: 12px;
}

.footer-links a:hover,
.footer-community a:hover {
  color: var(--medical-blue);

  transform: translateX(6px);
}

/* ICONS */

.footer-community i {
  width: 20px;
}

/* BOTTOM */

.footer-bottom {
  margin-top: 60px;

  padding-top: 30px;

  border-top: 1px solid rgba(255, 255, 255, 0.05);

  text-align: center;

  position: relative;

  z-index: 2;
  margin-bottom: 20px;
}

.footer-bottom p {
  color: #64748b;

  line-height: 1.8;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr;

    gap: 45px;
  }
}

@media (max-width: 768px) {
  .premium-footer {
    padding: 70px 20px 30px;
  }

  .footer-brand img {
    width: 140px;
  }
}
/* Admission form */
/* =========================
   ADMISSION PAGE
========================= */

/* HERO */

.admission-hero {
  position: relative;

  min-height: 55vh;

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;

  overflow: hidden;

  padding: 160px 20px 100px;

  background:
    linear-gradient(135deg, rgba(0, 8, 21, 0.95), rgba(2, 16, 34, 0.92)),
    url("../imgs/image.png");

  background-size: cover;

  background-position: center;
}

/* OVERLAY */

.admission-hero-overlay {
  position: absolute;

  inset: 0;

  background: radial-gradient(
    circle at top,
    rgba(56, 189, 248, 0.12),
    transparent 60%
  );
}

/* CONTENT */

.admission-hero-content {
  position: relative;

  z-index: 2;

  max-width: 850px;
}

.admission-hero-content span {
  display: inline-flex;

  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(56, 189, 248, 0.12);

  border: 1px solid rgba(56, 189, 248, 0.18);

  color: var(--medical-blue);

  font-size: 14px;

  letter-spacing: 1px;

  margin-bottom: 25px;
}

.admission-hero-content h1 {
  font-size: 70px;

  color: white;

  margin-bottom: 25px;

  line-height: 1.1;

  text-shadow: 0 0 30px rgba(56, 189, 248, 0.18);
}

.admission-hero-content p {
  color: #cbd5e1;

  font-size: 18px;

  line-height: 1.9;
}

/* SECTION */

.admission-section {
  padding: 90px 20px;
}

/* CONTAINER */

.admission-container {
  width: 100%;

  max-width: 950px;

  margin: auto;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );

  border: 1px solid rgba(56, 189, 248, 0.12);

  border-radius: 32px;

  padding: 45px;

  backdrop-filter: blur(14px);

  box-shadow: 0 0 40px rgba(56, 189, 248, 0.08);
}

/* HEADER */

.admission-header {
  text-align: center;

  margin-bottom: 40px;
}

.admission-header h2 {
  color: white;

  font-size: 42px;

  margin-bottom: 15px;
}

.admission-header p {
  color: #94a3b8;

  line-height: 1.8;
}

/* FORM */

.admission-form {
  display: flex;

  flex-direction: column;

  gap: 28px;
}

/* GRID */

.admission-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 22px;
}

/* INPUT */

.admission-input {
  display: flex;

  flex-direction: column;

  gap: 12px;
}

.admission-input label {
  color: var(--medical-blue);

  font-size: 15px;

  font-weight: bold;

  direction: rtl;
}

/* INPUTS */

.admission-input input,
.admission-input textarea {
  width: 100%;

  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(56, 189, 248, 0.12);

  border-radius: 18px;

  padding: 18px 20px;

  color: white;

  outline: none;

  transition: 0.3s;

  font-size: 15px;

  direction: rtl;

  font-family: "Noto Sans Arabic", sans-serif;
}

.admission-input input {
  height: 60px;
}

.admission-input textarea {
  resize: vertical;

  min-height: 160px;
}

/* FOCUS */

.admission-input input:focus,
.admission-input textarea:focus {
  border-color: var(--medical-blue);

  box-shadow: 0 0 25px rgba(56, 189, 248, 0.12);
}

/* PLACEHOLDER */

.admission-input input::placeholder,
.admission-input textarea::placeholder {
  color: #64748b;
}

/* BUTTON */

.admission-submit {
  height: 62px;

  border: none;

  border-radius: 20px;

  background: var(--medical-blue);

  color: white;

  font-size: 16px;

  font-weight: bold;

  cursor: pointer;

  transition: 0.3s;

  margin-top: 10px;

  box-shadow: 0 0 35px rgba(56, 189, 248, 0.3);
}

.admission-submit:hover {
  transform: translateY(-4px);

  box-shadow: 0 0 45px rgba(56, 189, 248, 0.45);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .admission-hero-content h1 {
    font-size: 56px;
  }
}

@media (max-width: 768px) {
  .admission-hero {
    min-height: 45vh;

    padding: 140px 20px 80px;
  }

  .admission-hero-content h1 {
    font-size: 42px;
  }

  .admission-hero-content p {
    font-size: 16px;
  }

  .admission-container {
    padding: 28px;

    border-radius: 24px;
  }

  .admission-header h2 {
    font-size: 32px;
  }

  .admission-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .admission-hero-content h1 {
    font-size: 34px;
  }
}
/* =========================
   RULES PAGE
========================= */

/* HERO */

.rules-hero {
  position: relative;

  min-height: 50vh;

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;

  overflow: hidden;

  padding: 160px 20px 90px;

  background:
    linear-gradient(135deg, rgba(0, 8, 21, 0.95), rgba(2, 16, 34, 0.92)),
    url("../imgs/image.png");

  background-size: cover;

  background-position: center;
}

/* OVERLAY */

.rules-hero-overlay {
  position: absolute;

  inset: 0;

  background: radial-gradient(
    circle at top,
    rgba(56, 189, 248, 0.12),
    transparent 60%
  );
}

/* CONTENT */

.rules-hero-content {
  position: relative;

  z-index: 2;

  max-width: 850px;
}

.rules-hero-content span {
  display: inline-flex;

  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(56, 189, 248, 0.12);

  border: 1px solid rgba(56, 189, 248, 0.18);

  color: var(--medical-blue);

  font-size: 14px;

  letter-spacing: 1px;

  margin-bottom: 25px;
}

.rules-hero-content h1 {
  font-size: 68px;

  color: white;

  margin-bottom: 24px;

  line-height: 1.1;

  text-shadow: 0 0 30px rgba(56, 189, 248, 0.18);
}

.rules-hero-content p {
  color: #cbd5e1;

  font-size: 18px;

  line-height: 1.9;
}

/* SECTION */

.rules-section {
  padding: 90px 20px;

  max-width: 1200px;

  margin: auto;
}

/* TITLE */

.rules-section > h1 {
  text-align: center;

  color: white;

  font-size: 50px;

  margin-bottom: 60px;

  text-shadow: 0 0 25px rgba(56, 189, 248, 0.18);
}

/* RULE CARD */

.rulecategory {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );

  border: 1px solid rgba(56, 189, 248, 0.12);

  border-radius: 24px;

  padding: 26px;

  margin-bottom: 22px;

  backdrop-filter: blur(14px);

  box-shadow: 0 0 25px rgba(56, 189, 248, 0.08);

  transition: 0.3s;

  direction: rtl;

  cursor: pointer;
}

/* HOVER */

.rulecategory:hover {
  border-color: rgba(56, 189, 248, 0.28);

  box-shadow: 0 0 45px rgba(56, 189, 248, 0.14);

  transform: translateY(-5px);
}

/* HEADER */

.rulecategory h2 {
  color: white;

  font-size: 26px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  margin: 0;
}
.rulecategory h2 i {
  color: var(--medical-blue);

  font-size: 15px;

  transition: 0.3s;

  min-width: 20px;
}
/* ICON */

/* .rulecategory h2::after{

    content: "\f078";

    font-family:
    "Font Awesome 6 Free";

    font-weight: 900;

    font-size: 15px;

    color: var(--medical-blue);

    transition: 0.3s;

} */

/* ACTIVE */

.rulecategory.active h2 i {
  transform: rotate(180deg);
}

/* RULES */

.rulecategory p {
  color: #cbd5e1;

  line-height: 2;

  font-size: 16px;

  margin-top: 22px;

  opacity: 0;

  max-height: 0;

  overflow: hidden;

  transition:
    max-height 0.45s ease,
    opacity 0.3s ease;
}

/* OPEN */

.rulecategory.active p {
  opacity: 1;

  max-height: 300px;

  margin-top: 18px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .rules-hero-content h1 {
    font-size: 54px;
  }
}

@media (max-width: 768px) {
  .rules-hero {
    min-height: 42vh;

    padding: 140px 20px 80px;
  }

  .rules-hero-content h1 {
    font-size: 40px;
  }

  .rules-hero-content p {
    font-size: 16px;
  }

  .rules-section {
    padding: 70px 20px;
  }

  .rules-section > h1 {
    font-size: 38px;
  }

  .rulecategory {
    padding: 22px;
  }

  .rulecategory h2 {
    font-size: 22px;
  }

  .rulecategory p {
    color: #cbd5e1;

    line-height: 2;

    font-size: 15px;

    margin-top: 0;

    opacity: 0;

    max-height: 0;

    overflow: hidden;

    transition:
      max-height 0.4s ease,
      opacity 0.3s ease,
      margin-top 0.3s ease;
  }
}
/* =========================
   RESPONSIVE DESIGN
========================= */

/* Tablets */
@media (max-width: 992px) {
  .nav {
    padding: 0 20px;
  }

  .landing .img h1 {
    font-size: 55px;
    width: 90%;
  }

  .Medicalstaff .category {
    height: 75px;
  }

  .CTopened {
    height: 650px !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  /* NAVBAR */

  .nav {
    height: auto;
    padding: 15px;
    gap: 15px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 0;
  }

  .links a {
    font-size: 14px;
  }

  /* LANDING */

  .landing .img h1 {
    font-size: 34px;
    width: 95%;
    line-height: 1.4;
  }

  .landing img {
    height: 500px;
    object-fit: cover;
  }

  .custom-shape-divider-bottom-1778244457 svg {
    height: 50px;
  }

  /* HEAD MANAGEMENT */

  .HM h2,
  .Medicalstaff > h2,
  .admission h1,
  .rules h1 {
    font-size: 28px;
  }

  .HMContainer {
    flex-direction: column;
    align-items: center;
  }

  .HMContainer .card {
    width: 100%;
    max-width: 350px;
  }

  .HMContainer .card img {
    height: auto;
  }

  /* MEDICAL STAFF */

  .Medicalstaff .category {
    margin: 15px 10px;
    padding: 15px;
    height: 70px;
  }

  .CTopened {
    height: 700px !important;
  }

  .Medicalstaff .category .employees {
    justify-content: center;
    gap: 20px;
  }

  .Medicalstaff .category .employee {
    width: 40%;
  }

  .Medicalstaff .category .employee img {
    width: 60px;
    height: 60px;
  }

  .Medicalstaff .category .employee .name {
    text-align: center;
    font-size: 13px;
  }

  /* FORMS */

  .admission {
    max-width: 95%;
  }

  .admission form input {
    font-size: 14px;
  }

  /* RULES */

  .rules {
    max-width: 95%;
  }

  .rules p {
    font-size: 15px;
    line-height: 1.8;
  }

  /* FOOTER */

  .footer {
    text-align: center;
    padding: 30px 15px;
  }

  .footer img {
    width: 140px;
  }

  .footer p {
    font-size: 13px;
    line-height: 1.6;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .landing .img h1 {
    font-size: 26px;
  }

  .HM h2,
  .Medicalstaff > h2 {
    font-size: 22px;
  }

  .Medicalstaff .category .employee {
    width: 100%;
  }

  .Medicalstaff .category .employee img {
    width: 70px;
    height: 70px;
  }

  .Medicalstaff .category .employee .name {
    font-size: 15px;
  }

  .links {
    gap: 10px;
  }

  .links a {
    font-size: 13px;
  }
}
/* =========================
   USER PROFILE BOX
========================= */

.discord-user {
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-box {
  display: flex;
  align-items: center;

  gap: 14px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(56, 189, 248, 0.35);

  padding: 10px 16px;

  border-radius: 16px;

  cursor: pointer;

  transition: 0.3s;

  backdrop-filter: blur(10px);

  box-shadow: 0 0 20px rgba(56, 189, 248, 0.15);
}

.user-box:hover {
  transform: translateY(-3px);

  border-color: var(--medical-blue);

  box-shadow: 0 0 30px rgba(56, 189, 248, 0.35);
}

.user-box img {
  width: 48px;

  height: 48px;

  border-radius: 50%;

  object-fit: cover;

  border: 2px solid var(--medical-blue);
}

.user-info {
  display: flex;

  flex-direction: column;

  gap: 3px;
}

.user-info h4 {
  color: white;

  font-size: 15px;
}

.user-info p {
  color: var(--medical-blue);

  font-size: 12px;
}

.user-box i {
  color: var(--medical-blue);

  font-size: 13px;

  transition: 0.3s;
}

.user-box:hover i {
  transform: rotate(180deg);
}
.discord-user {
  display: flex;
  align-items: center;
  gap: 15px;
}
/* =========================
   DISCORD LOGIN BUTTON
========================= */

.discord-user {
  display: flex;
  align-items: center;
  justify-content: center;
}

.discord-login-btn {
  display: flex;
  align-items: center;
  gap: 12px;

  background: rgba(88, 101, 242, 0.12);

  border: 1px solid #5865f2;

  color: #ffffff;

  padding: 12px 20px;

  border-radius: 14px;

  cursor: pointer;

  transition: 0.3s;

  font-weight: bold;

  font-size: 15px;

  box-shadow: 0 0 15px rgba(88, 101, 242, 0.25);
}

.discord-login-btn i {
  font-size: 20px;

  color: #5865f2;
}

.discord-login-btn:hover {
  transform: translateY(-3px);

  background: #5865f2;

  box-shadow: 0 0 30px rgba(88, 101, 242, 0.45);
}

.discord-login-btn:hover i {
  color: white;
}
/* =========================
   USER DROPDOWN
========================= */

.user-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;

  top: 75px;

  right: 0;

  width: 230px;

  background: rgba(2, 16, 34, 0.95);

  border: 1px solid rgba(56, 189, 248, 0.25);

  border-radius: 18px;

  padding: 12px;

  display: flex;

  flex-direction: column;

  gap: 8px;

  opacity: 0;

  visibility: hidden;

  transform: translateY(15px);

  transition: 0.3s;

  backdrop-filter: blur(10px);

  box-shadow: 0 0 25px rgba(56, 189, 248, 0.15);

  z-index: 999;
}

.dropdown-menu a {
  display: flex;

  align-items: center;

  gap: 12px;

  padding: 14px;

  border-radius: 12px;

  transition: 0.3s;

  color: white;
}

.dropdown-menu a:hover {
  background: rgba(56, 189, 248, 0.12);

  color: var(--medical-blue);
}

.dropdown-menu a i {
  width: 18px;
}

.logout:hover {
  background: rgba(239, 68, 68, 0.15) !important;

  color: #ef4444 !important;
}

.user-dropdown.active .dropdown-menu {
  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}

.user-dropdown.active .arrow {
  transform: rotate(180deg);
}
/* =========================
   DASHBOARD PREVIEW
========================= */

.dashboard-preview {
  margin: 120px 20px;
}

.dashboard-preview h2 {
  text-align: center;

  font-size: 42px;

  color: var(--medical-blue);

  text-shadow: var(--strong-shadow);

  margin-bottom: 50px;
}

.stats-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  gap: 25px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(56, 189, 248, 0.2);

  border-radius: 22px;

  padding: 30px;

  display: flex;

  align-items: center;

  gap: 20px;

  transition: 0.3s;

  backdrop-filter: blur(10px);

  box-shadow: 0 0 25px rgba(56, 189, 248, 0.08);
}

.stat-card:hover {
  transform: translateY(-6px);

  border-color: var(--medical-blue);

  box-shadow: 0 0 35px rgba(56, 189, 248, 0.2);
}

.stat-icon {
  width: 70px;

  height: 70px;

  border-radius: 18px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 28px;
}

.online {
 color: #10b981;

  background: rgba(16, 185, 129, 0.12);

  border: 1px solid rgba(16, 185, 129, 0.18);

  padding: 6px 12px;

  border-radius: 999px;

  width: fit-content;

  box-shadow: 0 0 18px rgba(16, 185, 129, 0.12);
}
.offline {
 padding: 6px 12px;

  border-radius: 999px;

  width: fit-content;


    box-shadow:

    0 0 12px rgba(255,77,77,.25);
    color: #ff4d4d !important;

    background: rgba(255, 77, 77, 0.15);

   border: 1px solid rgba(255, 77, 77, 0.4);
}
.reports {
  background: rgba(56, 189, 248, 0.12);

  color: var(--medical-blue);
}

.emergency {
  background: rgba(239, 68, 68, 0.12);

  color: #ef4444;
}

.ambulance {
  background: rgba(245, 158, 11, 0.12);

  color: #f59e0b;
}

.stat-info h3 {
  font-size: 32px;

  margin-bottom: 5px;
}

.stat-info p {
  color: #94a3b8;
}
/* =========================
   SCROLL ANIMATIONS
========================= */

.reveal {
  opacity: 0;

  transform: translateY(80px);

  transition:
    opacity 1s ease,
    transform 1s ease;
}

.reveal.active {
  opacity: 1;

  transform: translateY(0);
}
/* =========================
   MOBILE NAVBAR
========================= */

.mobile-menu-btn {
  display: none;

  font-size: 24px;

  color: var(--medical-blue);

  cursor: pointer;
}

/* MOBILE */

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;

    align-items: center;

    justify-content: center;
  }

  .nav {
    flex-direction: row;

    justify-content: space-between;

    align-items: center;

    padding: 0 20px;

    height: 85px;
  }

  .links {
    position: absolute;

    top: 85px;

    left: 0;

    width: 100%;

    background: rgba(2, 16, 34, 0.98);

    backdrop-filter: blur(10px);

    flex-direction: column;

    align-items: center;

    gap: 25px;

    padding: 30px 0;

    border-bottom: 1px solid rgba(56, 189, 248, 0.2);

    opacity: 0;

    visibility: hidden;

    transform: translateY(-15px);

    transition: 0.3s;

    z-index: 999;
  }

  .links.active {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
  }
}
/* =========================
   DASHBOARD LAYOUT
========================= */

.dashboard-layout {
  display: flex;

  min-height: 100vh;

  background: linear-gradient(135deg, #020617, #0f172a, #111827);
}

/* =========================
   SIDEBAR
========================= */

.sidebar {
  width: 280px;

  background: rgba(255, 255, 255, 0.03);

  border-right: 1px solid rgba(56, 189, 248, 0.15);

  padding: 30px 20px;

  backdrop-filter: blur(10px);

  display: flex;

  flex-direction: column;

  justify-content: space-between;
}

.sidebar-logo {
  margin-bottom: 50px;
}

.sidebar-logo h2 {
  color: var(--medical-blue);

  font-size: 38px;

  text-shadow: var(--strong-shadow);
}

.sidebar-links {
  display: flex;

  flex-direction: column;

  gap: 15px;
}

.sidebar-links a {
  display: flex;

  align-items: center;

  gap: 14px;

  padding: 16px;

  border-radius: 14px;

  transition: 0.3s;

  color: white;
}

.sidebar-links a:hover {
  background: rgba(56, 189, 248, 0.12);

  color: var(--medical-blue);
}

.sidebar-links a.active {
  background: rgba(56, 189, 248, 0.15);

  border: 1px solid rgba(56, 189, 248, 0.25);

  color: var(--medical-blue);

  box-shadow: 0 0 20px rgba(56, 189, 248, 0.15);
}

/* =========================
   MAIN
========================= */

.dashboard-main {
  flex: 1;

  padding: 30px;
}

/* =========================
   TOPBAR
========================= */

.dashboard-topbar {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 40px;
}

.dashboard-topbar h1 {
  font-size: 40px;

  color: white;
}

.dashboard-topbar p {
  color: #94a3b8;
}

.dashboard-user {
  display: flex;

  align-items: center;

  gap: 15px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(56, 189, 248, 0.2);

  padding: 12px 18px;

  border-radius: 16px;
}

.dashboard-user img {
  width: 52px;

  height: 52px;

  border-radius: 50%;

  object-fit: cover;

  border: 2px solid var(--medical-blue);
}

.dashboard-user h4 {
  color: white;
}

.dashboard-user p {
  color: var(--medical-blue);

  font-size: 13px;
}

/* =========================
   STATS
========================= */

.dashboard-stats {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

  gap: 25px;
}

.dash-card {
  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(56, 189, 248, 0.12);

  border-radius: 22px;

  padding: 30px;

  transition: 0.3s;

  backdrop-filter: blur(10px);

  box-shadow: 0 0 25px rgba(56, 189, 248, 0.08);
}

.dash-card:hover {
  transform: translateY(-6px);

  border-color: var(--medical-blue);

  box-shadow: 0 0 35px rgba(56, 189, 248, 0.2);
}

.dash-card h3 {
  font-size: 38px;

  margin-bottom: 10px;

  color: white;
}

.dash-card p {
  color: #94a3b8;
}

/* =========================
   RESPONSIVE DASHBOARD
========================= */

@media (max-width: 992px) {
  .sidebar {
    width: 90px;

    align-items: center;
  }

  .sidebar-logo h2 {
    font-size: 28px;
  }

  .sidebar-links a {
    justify-content: center;
  }

  .sidebar-links a span {
    display: none;
  }
}

@media (max-width: 768px) {
  .dashboard-layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;

    border-right: none;

    border-bottom: 1px solid rgba(56, 189, 248, 0.15);
  }

  .sidebar-links {
    flex-direction: row;

    flex-wrap: wrap;

    justify-content: center;
  }

  .dashboard-topbar {
    flex-direction: column;

    gap: 20px;

    align-items: flex-start;
  }
}
/* =========================
   ACTIVITY FEED
========================= */

.dashboard-content {
  margin-top: 40px;
}

.activity-section {
  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(56, 189, 248, 0.12);

  border-radius: 22px;

  padding: 30px;

  backdrop-filter: blur(10px);

  box-shadow: 0 0 25px rgba(56, 189, 248, 0.08);
}

.activity-section h2 {
  color: white;

  margin-bottom: 25px;
}

.activity-list {
  display: flex;

  flex-direction: column;

  gap: 20px;
}

.activity-item {
  display: flex;

  align-items: flex-start;

  gap: 15px;

  padding-bottom: 20px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.activity-item:last-child {
  border-bottom: none;

  padding-bottom: 0;
}

.activity-dot {
  width: 12px;

  height: 12px;

  border-radius: 50%;

  background: var(--medical-blue);

  margin-top: 8px;

  box-shadow: 0 0 15px var(--medical-blue);
}

.activity-item h4 {
  color: white;

  margin-bottom: 5px;
}

.activity-item p {
  color: #94a3b8;

  font-size: 14px;
}
/* =========================
   APPLICATIONS TABLE
========================= */

.applications-section {
  margin-top: 35px;

  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(56, 189, 248, 0.12);

  border-radius: 22px;

  padding: 30px;

  backdrop-filter: blur(10px);

  box-shadow: 0 0 25px rgba(56, 189, 248, 0.08);
}

.applications-header {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 25px;
}

.applications-header h2 {
  color: white;
}

.applications-header button {
  background: rgba(56, 189, 248, 0.12);

  color: var(--medical-blue);

  border: none;

  padding: 10px 18px;

  border-radius: 12px;

  cursor: pointer;

  transition: 0.3s;
}

.applications-header button:hover {
  background: var(--medical-blue);

  color: white;
}

.applications-table {
  overflow-x: auto;
}
.applications-table table {
  width: 100%;

  border-collapse: collapse;

  min-width: 700px;
}

.applications-table thead {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.applications-table th {
  text-align: left;

  padding: 18px 15px;

  color: #94a3b8;

  font-size: 14px;

  font-weight: bold;
}

.applications-table td {
  padding: 20px 15px;

  color: white;

  font-weight: 500;
}

.applications-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);

  transition: 0.3s;
}

.applications-table tbody tr:hover {
  background: rgba(56, 189, 248, 0.05);
}

.pending {
  background: rgba(245, 158, 11, 0.12);

  color: #f59e0b;
}

.accepted {
  background: rgba(16, 185, 129, 0.12);

  color: #10b981;
}

.rejected {
  background: rgba(239, 68, 68, 0.12);

  color: #ef4444;
}
.pending,
.accepted,
.rejected {
  padding: 8px 14px;

  border-radius: 999px;

  font-size: 13px;

  font-weight: bold;

  display: inline-flex;

  align-items: center;

  justify-content: center;
}
/* =========================
   APPLICATIONS CONTROLS
========================= */

.applications-controls {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 20px;

  margin-bottom: 30px;

  flex-wrap: wrap;
}

/* SEARCH BOX */

.search-box {
  flex: 1;

  min-width: 280px;

  display: flex;

  align-items: center;

  gap: 12px;

  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(56, 189, 248, 0.15);

  border-radius: 16px;

  padding: 0 18px;

  height: 60px;

  box-shadow: 0 0 20px rgba(56, 189, 248, 0.06);
}

.search-box i {
  color: var(--medical-blue);

  font-size: 15px;
}

.search-box input {
  flex: 1;

  background: transparent;

  border: none;

  outline: none;

  color: white;

  font-size: 15px;
}

.search-box input::placeholder {
  color: #94a3b8;
}

/* SELECT */

.applications-controls select {
  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(56, 189, 248, 0.15);

  color: white;

  height: 60px;

  padding: 0 20px;

  border-radius: 16px;

  outline: none;

  cursor: pointer;

  min-width: 220px;

  box-shadow: 0 0 20px rgba(56, 189, 248, 0.06);
}

.applications-controls option {
  background: #0f172a;
}

/* =========================
   ACTION BUTTONS
========================= */

.actions {
  display: flex;

  align-items: center;

  gap: 10px;

  flex-wrap: wrap;
}

.actions button {
  border: none;

  padding: 10px 16px;

  border-radius: 12px;

  cursor: pointer;

  transition: 0.3s;

  font-weight: bold;
}

/* VIEW */

.view-btn {
  background: rgba(56, 189, 248, 0.12);

  color: var(--medical-blue);
}

.view-btn:hover {
  background: var(--medical-blue);

  color: white;
}

/* ACCEPT */

.accept-btn {
  background: rgba(16, 185, 129, 0.12);

  color: #10b981;
}

.accept-btn:hover {
  background: #10b981;

  color: white;
}

/* REJECT */

.reject-btn {
  background: rgba(239, 68, 68, 0.12);

  color: #ef4444;
}

.reject-btn:hover {
  background: #ef4444;

  color: white;
}

/* =========================
   RESPONSIVE APPLICATIONS
========================= */

@media (max-width: 768px) {
  .applications-controls {
    flex-direction: column;

    align-items: stretch;
  }

  .applications-controls select {
    appearance: none;

    -webkit-appearance: none;

    -moz-appearance: none;

    background-image: none;

    background: rgba(255, 255, 255, 0.03);

    border: 1px solid rgba(56, 189, 248, 0.15);

    color: white;

    height: 60px;

    padding: 0 50px 0 20px;

    border-radius: 16px;

    outline: none;

    cursor: pointer;

    min-width: 220px;

    box-shadow: 0 0 20px rgba(56, 189, 248, 0.06);
  }
  .actions {
    flex-direction: column;

    align-items: stretch;
  }

  .actions button {
    width: 100%;
  }
}
.custom-select {
  position: relative;
}

.custom-select i {
  position: absolute;

  right: 18px;

  top: 50%;

  transform: translateY(-50%);

  color: var(--medical-blue);

  pointer-events: none;

  font-size: 13px;
}
/* =========================
   APPLICATION MODAL
========================= */

.application-modal {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.65);

  backdrop-filter: blur(8px);

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 20px;

  opacity: 0;

  visibility: hidden;

  transition: 0.3s;

  z-index: 9999;
}

/* OPEN */

.application-modal.active {
  opacity: 1;

  visibility: visible;
}

/* CONTENT */

.modal-content {
  width: 100%;

  max-width: 700px;

  background: linear-gradient(135deg, #0f172a, #111827);

  border: 1px solid rgba(56, 189, 248, 0.18);

  border-radius: 24px;

  padding: 35px;

  box-shadow: 0 0 45px rgba(56, 189, 248, 0.15);

  transform: translateY(40px) scale(0.96);

  transition: 0.3s;
}

/* OPEN ANIMATION */

.application-modal.active .modal-content {
  transform: translateY(0) scale(1);
}

/* HEADER */

.modal-header {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 30px;
}

.modal-header h2 {
  color: white;

  font-size: 32px;
}

.close-modal {
  color: #94a3b8;

  font-size: 24px;

  cursor: pointer;

  transition: 0.3s;
}

.close-modal:hover {
  color: #ef4444;

  transform: rotate(90deg);
}

/* BODY */

.modal-body {
  display: flex;

  flex-direction: column;

  gap: 22px;
}

.modal-field {
  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(56, 189, 248, 0.08);

  border-radius: 18px;

  padding: 20px;
}

.modal-field h4 {
  color: var(--medical-blue);

  margin-bottom: 10px;

  font-size: 16px;
}

.modal-field p {
  color: white;

  line-height: 1.7;
}

/* ACTIONS */

.modal-actions {
  display: flex;

  justify-content: flex-end;

  gap: 15px;

  margin-top: 35px;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .application-modal {
    padding: 15px;

    align-items: flex-start;

    overflow-y: auto;
  }

  .modal-content {
    width: 100%;

    padding: 22px;

    border-radius: 20px;

    margin-top: 40px;

    margin-bottom: 40px;
  }

  .modal-header {
    margin-bottom: 22px;
  }

  .modal-header h2 {
    font-size: 22px;
  }

  .close-modal {
    font-size: 22px;
  }

  .modal-body {
    gap: 16px;
  }

  .modal-field {
    padding: 16px;
  }

  .modal-field h4 {
    font-size: 15px;
  }

  .modal-field p {
    font-size: 14px;

    line-height: 1.8;

    word-break: break-word;
  }

  .modal-actions {
    flex-direction: column;

    gap: 12px;

    margin-top: 25px;
  }

  .modal-actions button {
    width: 100%;

    min-width: unset;

    height: 52px;

    font-size: 14px;
  }
}
/* =========================
   MODAL ACTION BUTTONS
========================= */

.modal-actions button {
  min-width: 220px;

  height: 55px;

  border: none;

  border-radius: 16px;

  font-size: 15px;

  font-weight: bold;

  cursor: pointer;

  transition: 0.3s;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 12px;
}

/* ACCEPT */

.modal-accept {
  background: rgba(16, 185, 129, 0.12);

  color: #10b981;

  border: 1px solid rgba(16, 185, 129, 0.25);

  box-shadow: 0 0 20px rgba(16, 185, 129, 0.12);
}

.modal-accept:hover {
  background: #10b981;

  color: white;

  transform: translateY(-3px);

  box-shadow: 0 0 30px rgba(16, 185, 129, 0.35);
}

/* REJECT */

.modal-reject {
  background: rgba(239, 68, 68, 0.12);

  color: #ef4444;

  border: 1px solid rgba(239, 68, 68, 0.25);

  box-shadow: 0 0 20px rgba(239, 68, 68, 0.12);
}

.modal-reject:hover {
  background: #ef4444;

  color: white;

  transform: translateY(-3px);

  box-shadow: 0 0 30px rgba(239, 68, 68, 0.35);
}
/* =========================
   STAFF MANAGEMENT
========================= */

.staff-controls {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 20px;

  margin-bottom: 30px;

  flex-wrap: wrap;
}

/* ADD STAFF BUTTON */

.add-staff-btn {
  height: 60px;

  padding: 0 24px;

  border: none;

  border-radius: 16px;

  background: rgba(16, 185, 129, 0.12);

  color: #10b981;

  display: flex;

  align-items: center;

  gap: 12px;

  font-weight: bold;

  cursor: pointer;

  transition: 0.3s;

  box-shadow: 0 0 20px rgba(16, 185, 129, 0.12);
}

.add-staff-btn:hover {
  background: #10b981;

  color: white;

  transform: translateY(-3px);

  box-shadow: 0 0 30px rgba(16, 185, 129, 0.35);
}

/* STAFF SECTION */

.staff-section {
  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(56, 189, 248, 0.12);

  border-radius: 22px;

  padding: 30px;

  backdrop-filter: blur(10px);

  box-shadow: 0 0 25px rgba(56, 189, 248, 0.08);
}

.staff-header {
  margin-bottom: 25px;
}

.staff-header h2 {
  color: white;
}

/* TABLE */

.staff-table {
  overflow-x: auto;
}

.staff-table table {
  width: 100%;

  border-collapse: collapse;

  min-width: 850px;
}

.staff-table thead {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.staff-table th {
  text-align: left;

  padding: 18px 15px;

  color: #94a3b8;

  font-size: 14px;
}

.staff-table td {
  padding: 20px 15px;

  color: white;

  vertical-align: middle;
}

.staff-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);

  transition: 0.3s;
}

.staff-table tbody tr:hover {
  background: rgba(56, 189, 248, 0.05);
}

/* AVATAR */

.staff-avatar {
  width: 58px;

  height: 58px;

  border-radius: 50%;

  object-fit: cover;

  border: 2px solid var(--medical-blue);

  box-shadow: 0 0 15px rgba(56, 189, 248, 0.18);
}

/* RANKS */

.staff-rank {
  padding: 8px 14px;

  border-radius: 999px;

  font-size: 13px;

  font-weight: bold;
}

/* DIRECTOR */

.staff-rank.director {
  background: rgba(239, 68, 68, 0.12);

  color: #ef4444;
}

/* DOCTOR */

.staff-rank.doctor {
  background: rgba(56, 189, 248, 0.12);

  color: var(--medical-blue);
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .staff-controls {
    flex-direction: column;

    align-items: stretch;
  }

  .add-staff-btn {
    width: 100%;

    justify-content: center;
  }
}
/* =========================
   STAFF MODAL
========================= */

.staff-modal {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.65);

  backdrop-filter: blur(8px);

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 20px;

  opacity: 0;

  visibility: hidden;

  transition: 0.3s;

  z-index: 9999;
}

/* ACTIVE */

.staff-modal.active {
  opacity: 1;

  visibility: visible;
}

/* CONTENT */

.staff-modal-content {
  width: 100%;

  max-width: 650px;

  background: linear-gradient(135deg, #0f172a, #111827);

  border: 1px solid rgba(56, 189, 248, 0.18);

  border-radius: 24px;

  padding: 35px;

  box-shadow: 0 0 45px rgba(56, 189, 248, 0.15);

  transform: translateY(40px) scale(0.96);

  transition: 0.3s;
}

/* OPEN */

.staff-modal.active .staff-modal-content {
  transform: translateY(0) scale(1);
}

/* HEADER */

.staff-modal-header {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 30px;
}

.staff-modal-header h2 {
  color: white;

  font-size: 30px;
}

.close-staff-modal {
  font-size: 24px;

  color: #94a3b8;

  cursor: pointer;

  transition: 0.3s;
}

.close-staff-modal:hover {
  color: #ef4444;

  transform: rotate(90deg);
}

/* FORM */

.staff-form {
  display: flex;

  flex-direction: column;

  gap: 22px;
}

.staff-input {
  display: flex;

  flex-direction: column;

  gap: 10px;
}

.staff-input label {
  color: var(--medical-blue);

  font-size: 15px;

  font-weight: bold;
}

.staff-input input,
.staff-input select {
  width: 100%;

  height: 58px;

  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(56, 189, 248, 0.12);

  border-radius: 16px;

  padding: 0 18px;

  color: white;

  outline: none;

  transition: 0.3s;

  font-size: 15px;
}

.staff-input input:focus,
.staff-input select:focus {
  border-color: var(--medical-blue);

  box-shadow: 0 0 20px rgba(56, 189, 248, 0.12);
}

.staff-input select {
  appearance: none;

  -webkit-appearance: none;

  -moz-appearance: none;

  cursor: pointer;
}

.staff-input option {
  background: #0f172a;
}

/* SUBMIT BUTTON */

.submit-staff-btn {
  height: 58px;

  border: none;

  border-radius: 16px;

  background: rgba(16, 185, 129, 0.12);

  color: #10b981;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  font-size: 15px;

  font-weight: bold;

  cursor: pointer;

  transition: 0.3s;

  margin-top: 10px;

  box-shadow: 0 0 20px rgba(16, 185, 129, 0.12);
}

.submit-staff-btn:hover {
  background: #10b981;

  color: white;

  transform: translateY(-3px);

  box-shadow: 0 0 30px rgba(16, 185, 129, 0.35);
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .staff-modal {
    align-items: flex-start;

    overflow-y: auto;

    padding: 15px;
  }

  .staff-modal-content {
    padding: 25px;

    margin-top: 40px;

    margin-bottom: 40px;
  }

  .staff-modal-header h2 {
    font-size: 24px;
  }
}
/* =========================
   SETTINGS PAGE
========================= */

.settings-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 25px;
}

/* CARD */

.setting-card {
  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(56, 189, 248, 0.12);

  border-radius: 24px;

  padding: 30px;

  backdrop-filter: blur(10px);

  box-shadow: 0 0 25px rgba(56, 189, 248, 0.08);

  transition: 0.3s;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  gap: 30px;
}

.setting-card:hover {
  transform: translateY(-5px);

  border-color: rgba(56, 189, 248, 0.3);

  box-shadow: 0 0 35px rgba(56, 189, 248, 0.15);
}

/* TOP */

.setting-card-top {
  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  gap: 20px;
}

.setting-card-top h3 {
  color: white;

  margin-bottom: 8px;

  font-size: 22px;
}

.setting-card-top p {
  color: #94a3b8;

  line-height: 1.6;
}

.setting-card-top i {
  font-size: 28px;

  color: var(--medical-blue);
}

/* BUTTON */

.settings-btn {
  height: 55px;

  border: none;

  border-radius: 16px;

  background: rgba(56, 189, 248, 0.12);

  color: var(--medical-blue);

  font-size: 15px;

  font-weight: bold;

  cursor: pointer;

  transition: 0.3s;

  box-shadow: 0 0 20px rgba(56, 189, 248, 0.12);
}

.settings-btn:hover {
  background: var(--medical-blue);

  color: white;

  transform: translateY(-3px);

  box-shadow: 0 0 30px rgba(56, 189, 248, 0.35);
}

/* SWITCH */

.switch {
  position: relative;

  width: 72px;

  height: 38px;

  flex-shrink: 0;
}

.switch input {
  position: absolute;

  opacity: 0;

  width: 0;

  height: 0;
}

.slider {
  position: absolute;

  inset: 0;

  cursor: pointer;

  background: rgba(239, 68, 68, 0.25);

  border: 1px solid rgba(239, 68, 68, 0.35);

  border-radius: 999px;

  transition: 0.3s;
}

.slider::before {
  content: "";

  position: absolute;

  width: 28px;

  height: 28px;

  left: 4px;

  top: 4px;

  border-radius: 50%;

  background: white;

  transition: 0.3s;

  box-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}

/* ACTIVE */

.switch input:checked + .slider {
  background: rgba(16, 185, 129, 0.35);

  border: 1px solid rgba(16, 185, 129, 0.45);
}

.switch input:checked + .slider::before {
  transform: translateX(33px);
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .settings-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   HERO MODAL
========================= */

.hero-modal {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.65);

  backdrop-filter: blur(8px);

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 20px;

  opacity: 0;

  visibility: hidden;

  transition: 0.3s;

  z-index: 9999;
}

/* ACTIVE */

.hero-modal.active {
  opacity: 1;

  visibility: visible;
}

/* CONTENT */

.hero-modal-content {
  width: 100%;

  max-width: 700px;

  background: linear-gradient(135deg, #0f172a, #111827);

  border: 1px solid rgba(56, 189, 248, 0.18);

  border-radius: 24px;

  padding: 35px;

  box-shadow: 0 0 45px rgba(56, 189, 248, 0.15);

  transform: translateY(40px) scale(0.96);

  transition: 0.3s;
}

/* OPEN */

.hero-modal.active .hero-modal-content {
  transform: translateY(0) scale(1);
}

/* HEADER */

.hero-modal-header {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 30px;
}

.hero-modal-header h2 {
  color: white;

  font-size: 30px;
}

.close-hero-modal {
  font-size: 24px;

  color: #94a3b8;

  cursor: pointer;

  transition: 0.3s;
}

.close-hero-modal:hover {
  color: #ef4444;

  transform: rotate(90deg);
}

/* FORM */

.hero-form {
  display: flex;

  flex-direction: column;

  gap: 22px;
}

.hero-input {
  display: flex;

  flex-direction: column;

  gap: 10px;
}

.hero-input label {
  color: var(--medical-blue);

  font-size: 15px;

  font-weight: bold;
}

/* INPUTS */

.hero-input input,
.hero-input textarea {
  width: 100%;

  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(56, 189, 248, 0.12);

  border-radius: 16px;

  padding: 16px 18px;

  color: white;

  outline: none;

  transition: 0.3s;

  font-size: 15px;
}

.hero-input input {
  height: 58px;
}

.hero-input textarea {
  resize: vertical;

  min-height: 140px;
}

.hero-input input:focus,
.hero-input textarea:focus {
  border-color: var(--medical-blue);

  box-shadow: 0 0 20px rgba(56, 189, 248, 0.12);
}

/* SAVE BUTTON */

.save-hero-btn {
  height: 58px;

  border: none;

  border-radius: 16px;

  background: rgba(56, 189, 248, 0.12);

  color: var(--medical-blue);

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  font-size: 15px;

  font-weight: bold;

  cursor: pointer;

  transition: 0.3s;

  margin-top: 10px;

  box-shadow: 0 0 20px rgba(56, 189, 248, 0.12);
}

.save-hero-btn:hover {
  background: var(--medical-blue);

  color: white;

  transform: translateY(-3px);

  box-shadow: 0 0 30px rgba(56, 189, 248, 0.35);
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .hero-modal {
    align-items: flex-start;

    overflow-y: auto;

    padding: 15px;
  }

  .hero-modal-content {
    padding: 25px;

    margin-top: 40px;

    margin-bottom: 40px;
  }

  .hero-modal-header h2 {
    font-size: 24px;
  }
}
/* =========================
   SYSTEM LOGS
========================= */

.logs-section {
  margin-top: 35px;

  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(56, 189, 248, 0.12);

  border-radius: 24px;

  padding: 30px;

  backdrop-filter: blur(10px);

  box-shadow: 0 0 25px rgba(56, 189, 248, 0.08);
}

/* HEADER */

.logs-header {
  margin-bottom: 30px;
}

.logs-header h2 {
  color: white;

  margin-bottom: 10px;

  font-size: 28px;
}

.logs-header p {
  color: #94a3b8;
}

/* TIMELINE */

.logs-timeline {
  display: flex;

  flex-direction: column;

  gap: 25px;
}

/* ITEM */

.log-item {
  display: flex;

  gap: 18px;

  align-items: flex-start;

  position: relative;
}

/* LINE */

.log-item::before {
  content: "";

  position: absolute;

  left: 24px;

  top: 60px;

  width: 2px;

  height: calc(100% + 25px);

  background: rgba(255, 255, 255, 0.08);
}

.log-item:last-child::before {
  display: none;
}

/* ICON */

.log-icon {
  min-width: 50px;

  width: 50px;

  height: 50px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 18px;

  position: relative;

  z-index: 2;
}

/* COLORS */

.log-icon.accepted {
  background: rgba(16, 185, 129, 0.12);

  color: #10b981;

  box-shadow: 0 0 20px rgba(16, 185, 129, 0.18);
}

.log-icon.added {
  background: rgba(56, 189, 248, 0.12);

  color: var(--medical-blue);

  box-shadow: 0 0 20px rgba(56, 189, 248, 0.18);
}

.log-icon.settings {
  background: rgba(245, 158, 11, 0.12);

  color: #f59e0b;

  box-shadow: 0 0 20px rgba(245, 158, 11, 0.18);
}

/* CONTENT */

.log-content {
  flex: 1;

  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(255, 255, 255, 0.05);

  border-radius: 18px;

  padding: 18px 20px;
}

.log-content h4 {
  color: white;

  margin-bottom: 8px;

  font-size: 17px;
}

.log-content p {
  color: #cbd5e1;

  line-height: 1.7;

  margin-bottom: 10px;
}

.log-content span {
  color: #64748b;

  font-size: 13px;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .logs-section {
    padding: 22px;
  }

  .logs-header h2 {
    font-size: 24px;
  }

  .log-item {
    gap: 14px;
  }

  .log-icon {
    width: 42px;

    height: 42px;

    min-width: 42px;

    font-size: 15px;
  }

  .log-item::before {
    left: 20px;
  }

  .log-content {
    padding: 16px;
  }
}
/* =========================
   APPLICATION SUCCESS
========================= */

.application-success {
  display: none;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  padding: 30px 10px;

  animation: fadeUp 0.5s ease;
}

/* ACTIVE */

.application-success.active {
  display: flex;
}

/* ICON */

.success-icon {
  width: 110px;

  height: 110px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(16, 185, 129, 0.12);

  border: 1px solid rgba(16, 185, 129, 0.18);

  margin-bottom: 30px;

  box-shadow: 0 0 40px rgba(16, 185, 129, 0.15);
}

.success-icon i {
  font-size: 52px;

  color: #10b981;
}

/* TITLE */

.application-success h2 {
  color: white;

  font-size: 42px;

  margin-bottom: 18px;
}

/* TEXT */

.application-success p {
  color: #cbd5e1;

  line-height: 1.9;

  max-width: 600px;

  margin-bottom: 18px;
}

/* DISCORD NOTICE */

.application-success span {
  color: var(--medical-blue);

  margin-bottom: 30px;

  font-weight: bold;
}

/* BUTTON */

.application-success a {
  height: 58px;

  padding: 0 28px;

  border-radius: 18px;

  display: flex;

  align-items: center;

  gap: 12px;

  background: rgba(88, 101, 242, 0.15);

  border: 1px solid rgba(88, 101, 242, 0.22);

  color: #7289da;

  transition: 0.3s;

  font-weight: bold;
}

.application-success a:hover {
  transform: translateY(-4px);

  box-shadow: 0 0 30px rgba(88, 101, 242, 0.18);
}

/* ANIMATION */

@keyframes fadeUp {
  from {
    opacity: 0;

    transform: translateY(30px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}
/* =========================
   DASHBOARD ACCESS
========================= */

.dashboard-access-screen{

    position: fixed;

    inset: 0;

    background:
    linear-gradient(
        135deg,
        #020617,
        #071224
    );

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 999999;

}

.dashboard-access-box{

    width: 500px;

    max-width: 90%;

    padding: 50px;

    border-radius: 28px;

    text-align: center;

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(56,189,248,0.14);

    backdrop-filter: blur(16px);

    box-shadow:
    0 0 45px rgba(56,189,248,0.12);

}

.dashboard-access-box h1{

    color: white;

    font-size: 34px;

    margin-top: 30px;

}

/* LOADER */

.access-loader{

    width: 90px;

    height: 90px;

    border-radius: 50%;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
    rgba(56,189,248,0.1);

    border:
    1px solid rgba(56,189,248,0.14);

}

.access-loader i{

    color: var(--medical-blue);

    font-size: 38px;

    animation:
    spin 1s linear infinite;

}

/* DENIED */

.dashboard-access-box.denied .access-loader{

    background:
    rgba(239,68,68,0.12);

    border:
    1px solid rgba(239,68,68,0.2);

}

.dashboard-access-box.denied .access-loader i{

    animation: none;

    color: #ef4444;

}

/* SPIN */

@keyframes spin{

    from{

        transform: rotate(0deg);

    }

    to{

        transform: rotate(360deg);

    }

}
/* REDIRECT TEXT */

.redirect-text{

    margin-top: 22px;

    color: #94a3b8;

    font-size: 16px;

}

.redirect-text span{

    color: #ef4444;

    font-weight: bold;

}/* =========================
   VIEW BUTTON
========================= */
/* 
.view-btn{

    border: none;

    outline: none;

    padding: 10px 18px;

    border-radius: 12px;

    cursor: pointer;

    color: white;

    font-weight: 700;

    font-size: 14px;

    background:
    linear-gradient(
        135deg,
        #0ea5e9,
        #2563eb
    );

    box-shadow:
    0 0 18px rgba(14,165,233,0.25);

    transition: 0.25s;

}

.view-btn:hover{

    transform:
    translateY(-2px);

    box-shadow:
    0 0 24px rgba(14,165,233,0.45);

} */
.table-actions{

    text-align: center;

}
.table-actions button,.table-actions a.view-btn{
    border: none;

  padding: 10px 16px;

  border-radius: 12px;

  cursor: pointer;

  transition: 0.3s;

  font-weight: bold;
}
/* =========================
   APPLICATION FILTERS
========================= */

.applications-filters{

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

}

.filter-btn{

    border: none;

    outline: none;

    padding: 12px 18px;

    border-radius: 12px;

    cursor: pointer;

    color: #cbd5e1;

    background:
    rgba(255,255,255,0.05);

    border:
    1px solid rgba(255,255,255,0.06);

    font-weight: 700;

    transition: 0.25s;

}

.filter-btn:hover{

    transform:
    translateY(-2px);

}

.filter-btn.active{

    color: white;

    background:
    linear-gradient(
        135deg,
        #0ea5e9,
        #2563eb
    );

    box-shadow:
    0 0 20px rgba(14,165,233,0.22);

}
.login-warning{

    color: #ef4444;

    text-align: center;

    margin-top: 12px;

    font-weight: bold;

}/* =========================
   LOGIN REQUIRED
========================= */

.login-required{

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 18px;

    padding: 60px 30px;

    text-align: center;

}

.login-required i{

    font-size: 70px;

    color: #5865f2;

}

.login-required h2{

    color: white;

    font-size: 34px;

}

.login-required p{

    color: #94a3b8;

    max-width: 500px;

}

.login-required a{

    padding: 14px 22px;

    border-radius: 14px;

    background:
    linear-gradient(
        135deg,
        #5865f2,
        #4752c4
    );

    color: white;

    text-decoration: none;

    font-weight: bold;

}
/* =========================
   SETTINGS SAVE
========================= */

.save-settings-btn{

    margin-top: 20px;

    border: none;

    outline: none;

    padding: 14px 22px;

    border-radius: 12px;

    cursor: pointer;

    font-weight: bold;

    color: white;

    background:

    linear-gradient(

        135deg,

        #2563eb,

        #1d4ed8

    );

}

.settings-status{

    margin-top: 15px;

    color: #22c55e;

    font-weight: bold;

}
/* =========================
   APPLICATIONS CLOSED
========================= */

.applications-closed{

    display: none;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 70px 30px;

    gap: 18px;

}

.applications-closed i{

    font-size: 70px;

    color: #ef4444;

}

.applications-closed h2{

    color: white;

    font-size: 36px;

}

.applications-closed p{

    color: #cbd5e1;

}

.applications-closed span{

    color: #94a3b8;

}
.log-icon.rejected{

    background:
    rgba(239,68,68,.12);

    color: #ef4444;

}
/* staff status */
.staff-status-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fill, minmax(320px, 1fr));

    gap:20px;

    margin-top:20px;
}

.staff-status-card{

    background:#0f172a;

    border:1px solid #1e293b;

    border-radius:18px;

    padding:20px;

    display:flex;

    flex-direction:column;

    gap:15px;
}

.staff-status-top{

    display:flex;

    align-items:center;

    gap:15px;
}

.staff-status-top img{

    width:70px;
    height:70px;

    border-radius:50%;

    object-fit:cover;
}

.staff-status-info h3{

    color:white;
    margin-bottom:5px;
}

.staff-status-info p{

    color:#94a3b8;
    font-size:14px;
}

.staff-badges{

    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.staff-badge{

    padding:6px 12px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;
}

.badge-online{

    background:#14532d;
    color:#4ade80;
}

.badge-offline{

    background:#3f3f46;
    color:#d4d4d8;
}

.badge-leave{

    background:#78350f;
    color:#facc15;
}

.badge-unit{

    background:#1e3a8a;
    color:#93c5fd;
}

.staff-strikes{

    color:#ef4444;

    font-weight:700;
}
.staff-warnings{

    color:#facc15;

    font-weight:700;

    margin-top:6px;
}
.warning-btn{

    margin-top:12px;

    background:#78350f;

    color:#facc15;

    border:none;

    padding:10px;

    border-radius:10px;

    cursor:pointer;

    font-weight:700;
}
.staff-status-row{

    margin-top:10px;
}

.status-badge{

    padding:8px 16px;

    border-radius:40px;

    font-size:13px;

    font-weight:700;

    display:inline-flex;

    align-items:center;

    gap:8px;
}

.badge-online{

    background:rgba(34,197,94,.15);

    color:#22c55e;

    border:1px solid rgba(34,197,94,.3);
}

.badge-offline{

    background:rgba(100,116,139,.15);

    color:#94a3b8;

    border:1px solid rgba(100,116,139,.3);
}

.badge-leave{

    background:rgba(250,204,21,.12);

    color:#facc15;

    border:1px solid rgba(250,204,21,.3);
}

.staff-units{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-top:15px;
}

.unit-badge{

    background:rgba(59,130,246,.12);

    color:#60a5fa;

    border:1px solid rgba(59,130,246,.25);

    padding:7px 14px;

    border-radius:30px;

    font-size:12px;

    font-weight:700;
}

.staff-stats{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:12px;

    margin-top:18px;
}

.stat-box{

    padding:14px;

    border-radius:14px;

    display:flex;

    flex-direction:column;

    gap:5px;
}

.warning-box{

    background:rgba(245,158,11,.12);

    border:1px solid rgba(245,158,11,.2);
}

.warning-box strong{

    color:#facc15;
}

.strike-box{

    background:rgba(239,68,68,.12);

    border:1px solid rgba(239,68,68,.2);
}

.strike-box strong{

    color:#ef4444;
}

.staff-actions{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:10px;

    margin-top:18px;
}

.action-btn{

    width:100%;

    min-height:48px;

    border:none;

    border-radius:14px;

    font-size:13px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    cursor:pointer;

    transition: 0.3s;
}
.action-btn:hover{

    transform:translateY(-2px);
}

.warn-btn{

    background:#f59e0b;

    color:white;
}

.strike-btn{

    background:#ef4444;

    color:white;
}

.history-btn{

    background:#2563eb;

    color:white;
}
.status-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:8px 18px;

    border-radius:50px;

    font-size:13px;

    font-weight:700;

    border:1px solid transparent;
}

.badge-online{

    background:rgba(34,197,94,.15);

    color:#4ade80;

    border-color:rgba(74,222,128,.25);

    box-shadow:
    0 0 18px rgba(74,222,128,.15);
}

.badge-offline{

    background:rgba(239,68,68,.12);

    color:#f87171;

    border-color:rgba(248,113,113,.2);

    box-shadow:
    0 0 18px rgba(248,113,113,.12);
}

.badge-leave{

    background:rgba(245,158,11,.12);

    color:#facc15;

    border-color:rgba(250,204,21,.2);

    box-shadow:
    0 0 18px rgba(250,204,21,.12);
}
.modal-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.6);

    backdrop-filter:blur(8px);

    display:none;

    align-items:center;

    justify-content:center;

    z-index:9999;
}

.modal-overlay.active{

    display:flex;
}

.warnings-modal{

    width:700px;

    max-width:95%;

    max-height:80vh;

    overflow:auto;

    background:#0f172a;

    border:1px solid #1e293b;

    border-radius:24px;

    padding:25px;
}

.warnings-header{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-bottom:20px;
}

.warnings-header h2{

    color:white;
}

.close-modal{

    width:45px;

    height:45px;

    border:none;

    border-radius:14px;

    background:#111827;

    color:white;

    cursor:pointer;

    font-size:18px;
}

.warnings-list{

    display:flex;

    flex-direction:column;

    gap:15px;
}

.warning-history-card{

    background:#111827;

    border:1px solid #1e293b;

    border-radius:18px;

    padding:18px;
}

.warning-history-top{

    display:flex;

    justify-content:space-between;

    margin-bottom:10px;
}

.warning-type{

    background:rgba(245,158,11,.12);

    color:#facc15;

    padding:6px 14px;

    border-radius:30px;

    font-size:12px;

    font-weight:700;
}

.warning-severity{

    background:rgba(239,68,68,.12);

    color:#ef4444;

    padding:6px 14px;

    border-radius:30px;

    font-size:12px;

    font-weight:700;
}

.warning-reason{

    color:white;

    margin:14px 0;

    line-height:1.6;
}

.warning-footer{

    display:flex;

    justify-content:space-between;

    color:#94a3b8;

    font-size:13px;
}
.delete-warning-btn{

    width:42px;

    height:42px;

    border:none;

    border-radius:12px;

    background:rgba(239,68,68,.12);

    color:#ef4444;

    cursor:pointer;
}.units-form{

    display:flex;

    flex-direction:column;

    gap:20px;
}

.units-form label{

    display:flex;

    align-items:center;

    gap:12px;

    color:white;

    font-weight:600;
}

.units-form input{

    width:18px;
    height:18px;
}

.save-units-btn{

    margin-top:10px;

    height:50px;

    border:none;

    border-radius:14px;

    background:#2563eb;

    color:white;

    font-weight:700;

    cursor:pointer;
}
.units-btn{

    background:#1e293b;

    color:#38bdf8;

    border:1px solid #334155;
}
.staff-callsign{

    display:inline-flex;

    margin-top:6px;

    padding:6px 12px;

    border-radius:30px;

    background:rgba(59,130,246,.12);

    border:1px solid rgba(59,130,246,.25);

    color:#60a5fa;

    font-size:12px;

    font-weight:700;
}