/* LOGIN */
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;

  display: flex;
  justify-content: center;
  align-items: center;
}
/* Card login */
.login-container {
  background: white;
  padding: 40px;
  width: 350px;
  border-radius: 15px;
  text-align: center;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  margin-top: 160px !important;
}
/* Icon */
.avatar {
  width: 80px;
  height: 80px;
  background: #3c78ad;
  border-radius: 50%;
  margin: -70px auto 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 35px;
}
/* Judul */
.login-container h2 {
  margin-bottom: 20px;
}
/* Input */
.login-container input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 8px;
  background: #f1f1f1;
  font-size: 14px;
}
/* Button */
.login-container button {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #4facfe, #00c6ff);
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
.login-container button:hover {
  opacity: 0.8;
}
/* Forgot */
.login-container a {
  display: block;
  margin-top: 15px;
  color: #5cc2d6;
  text-decoration: none;
  font-size: 14px;
}

/* =========================
   SIDEBAR
========================= */

.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 245px;
  height: 100vh;

  background: linear-gradient(180deg, #071f1f 0%, #0a2e2d 60%, #061818 100%);

  display: flex;
  flex-direction: column;

  z-index: 1000;

  box-shadow: 6px 0 30px rgba(0, 0, 0, 0.3);

  overflow-y: auto;
  overflow-x: hidden;

  transition:
    transform 0.3s ease,
    width 0.3s ease;
}

.sidebar::-webkit-scrollbar {
  width: 3px;
}
.sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

/* =========================
   BRAND
========================= */

.sidebar-brand {
  padding: 1.6rem 1.3rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.brand-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;

  background: linear-gradient(135deg, #0f5e5c, #1b8a84);
  border-radius: 14px;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 1.3rem;

  box-shadow: 0 6px 18px rgba(15, 94, 92, 0.45);
}

.brand-text h2 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
  letter-spacing: 0.3px;
}

.brand-text span {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}

/* =========================
   MENU LABEL
========================= */

.menu-label {
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 0.3rem 1.3rem 0.4rem;
  margin-top: 1.1rem;
}

/* =========================
   NAV WRAPPER
========================= */

.sidebar-nav {
  flex: 1;
  padding: 0.5rem 0;

  overflow-y: auto;
  min-height: 0;
}

/* =========================
   LINKS
========================= */

.sidebar a {
  display: flex;
  align-items: center;
  gap: 0.8rem;

  color: rgba(255, 255, 255, 0.55);

  padding: 0.72rem 1rem;
  margin: 0.08rem 0.65rem;

  border-radius: 11px;

  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;

  position: relative;
  white-space: nowrap;

  transition: all 0.28s ease;
}

.sidebar a i {
  width: 18px;
  text-align: center;
  font-size: 0.88rem;
  flex-shrink: 0;
  transition: transform 0.28s ease;
}

.sidebar a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  transform: translateX(4px);
}

.sidebar a:hover i {
  transform: scale(1.15);
}

/* ACTIVE */
.sidebar a.active {
  background: linear-gradient(
    135deg,
    rgba(15, 94, 92, 0.65),
    rgba(27, 138, 132, 0.4)
  );
  color: #ffffff;
  font-weight: 600;
  border: 1px solid rgba(15, 94, 92, 0.35);
  box-shadow: 0 4px 16px rgba(15, 94, 92, 0.2);
}

.sidebar a.active::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 55%;
  background: linear-gradient(to bottom, #1b8a84, #d4af37);
  border-radius: 0 4px 4px 0;
}

/* =========================
   FOOTER / LOGOUT
========================= */

.sidebar-footer {
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.sidebar-footer a {
  display: flex;
  align-items: center;
  gap: 0.8rem;

  color: rgba(255, 255, 255, 0.38);
  font-size: 0.82rem;

  padding: 0.65rem 0.9rem;
  margin: 0;

  border-radius: 10px;
  text-decoration: none;

  transition: all 0.28s ease;
}

.sidebar-footer a:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
  transform: none;
}

/* =========================
   HAMBURGER BUTTON
========================= */

.hamburger-admin {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1100;

  background: linear-gradient(135deg, #0f5e5c, #1b7a76);
  color: white;
  border: none;

  width: 42px;
  height: 42px;

  border-radius: 12px;
  font-size: 1.1rem;
  cursor: pointer;

  box-shadow: 0 4px 14px rgba(15, 94, 92, 0.4);
  transition: all 0.3s ease;

  /* default HIDDEN di desktop */
  display: none;
}

.hamburger-admin:hover {
  transform: scale(1.05);
}

/* hamburger hilang saat sidebar aktif */

.hamburger-admin.hide {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  pointer-events: none;
}

/* OVERLAY */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  backdrop-filter: blur(3px);
}

.sidebar-overlay.show {
  display: block;
}

/* =========================
   TABLET — 768px
========================= */

@media (max-width: 768px) {
  .hamburger-admin {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sidebar {
    width: 220px;
  }

  .sidebar a {
    font-size: 0.82rem;
    padding: 0.68rem 0.9rem;
  }

  .brand-text h2 {
    font-size: 0.9rem;
  }
  .sidebar {
    transform: translateX(-100%);
    width: 230px;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .hamburger-admin {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* =========================
   MOBILE — 450px
========================= */

@media (max-width: 450px) {
  .sidebar {
    transform: translateX(-100%);
    width: 230px;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .hamburger-admin {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* =========================
   CONTENT DASHBOARD
========================= */

.content {
  margin-left: 245px;
  padding: 50px;
  min-height: 100vh;
  width: 100%;

  background:
    radial-gradient(
      circle at top left,
      rgba(15, 94, 92, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(27, 138, 132, 0.08),
      transparent 30%
    ),
    #f4f7f6;

  transition: all 0.3s ease;
}

/* =========================
   HEADER DASHBOARD
========================= */

.header-dashboard {
  margin-bottom: 2rem;
  display: block !important;
}

.header-dashboard h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #071f1f;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.header-dashboard p {
  font-size: 0.95rem;
  color: #5f6b6b;
  line-height: 1.6;
  display: block !important;
}

/* =========================
   CARD WRAPPER
========================= */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

/* =========================
   CARD SMALL
========================= */

.card-small {
  position: relative;
  overflow: hidden;

  padding: 1.5rem;

  border-radius: 22px;

  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.4);

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.4);

  transition: all 0.35s ease;
}

/* garis gradient atas */
.card-small::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 5px;

  background: linear-gradient(90deg, #0f5e5c, #1b8a84, #d4af37);
}

/* efek glow */
.card-small::after {
  content: "";

  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at top right,
    rgba(15, 94, 92, 0.12),
    transparent 55%
  );

  pointer-events: none;
}

/* hover */
.card-small:hover {
  transform: translateY(-8px);

  box-shadow:
    0 20px 40px rgba(15, 94, 92, 0.14),
    inset 0 1px 1px rgba(255, 255, 255, 0.5);
}

/* angka */
.card-small h3 {
  font-size: 2.3rem;
  font-weight: 800;
  color: #071f1f;
  margin-bottom: 0.4rem;
  position: relative;
  z-index: 2;
}

/* text */
.card-small p {
  font-size: 0.95rem;
  color: #5f6b6b;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

/* =========================
   TABLET RESPONSIVE
========================= */

@media (max-width: 768px) {
  .content {
    margin-left: 0;
    padding: 85px 20px 25px;
  }

  .header-dashboard h1 {
    font-size: 1.7rem;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .card-small {
    padding: 1.3rem;
    border-radius: 18px;
  }

  .card-small h3 {
    font-size: 2rem;
  }
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 450px) {
  .content {
    padding: 80px 16px 20px;
  }

  .header-dashboard {
    margin-bottom: 1.5rem;
  }

  .header-dashboard h1 {
    font-size: 1.45rem;
  }

  .header-dashboard p {
    font-size: 0.85rem;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .card-small {
    padding: 1.2rem;
    border-radius: 16px;
  }

  .card-small h3 {
    font-size: 1.8rem;
  }

  .card-small p {
    font-size: 0.88rem;
  }
}

/* =========================
   PESAN WRAPPER
========================= */

.pesan-wrapper {
  margin-top: 2rem;
}

/* =========================
   HEADER PESAN
========================= */

.pesan-header {
  margin-bottom: 1rem;
}

.pesan-header h2 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;

  font-size: 1.3rem;
  font-weight: 700;
  color: #071f1f;
}

.pesan-header .icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #0f5e5c, #1b8a84);
  color: white;

  border-radius: 14px;

  font-size: 1rem;

  box-shadow: 0 6px 18px rgba(15, 94, 92, 0.25);
}

.pesan-count {
  padding: 0.35rem 0.9rem;

  border-radius: 999px;

  background: rgba(15, 94, 92, 0.1);
  color: #0f5e5c;

  font-size: 0.8rem;
  font-weight: 600;
}

/* =========================
   TABLE CARD
========================= */

.table-card {
  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.4);

  border-radius: 24px;

  overflow: hidden;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.5);
}

/* scroll mobile */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
}

/* =========================
   TABLE
========================= */

.table-pesan {
  width: 100%;
  border-collapse: collapse;
  min-width: 750px;
}

/* =========================
   TABLE HEAD
========================= */

.table-pesan thead {
  background: linear-gradient(135deg, #0b2f2e, #124b49);
}

.table-pesan thead th {
  padding: 1rem;

  text-align: left;

  color: white;

  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* =========================
   TABLE BODY
========================= */

.table-pesan tbody tr {
  transition: all 0.25s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.table-pesan tbody tr:hover {
  background: rgba(15, 94, 92, 0.04);
}

.table-pesan tbody td {
  padding: 1rem;

  font-size: 0.9rem;
  color: #334155;

  vertical-align: top;
}

/* nomor */
.td-no {
  font-weight: 700;
  color: #0f5e5c;
}

/* nama */
.td-nama {
  font-weight: 600;
  color: #071f1f;
}

/* email */
.td-email {
  color: #2563eb;
  font-size: 0.85rem;
}

/* pesan */
.td-pesan-text {
  display: inline-block;

  max-width: 420px;

  line-height: 1.6;

  color: #475569;
}

/* =========================
   EMPTY STATE
========================= */

.empty-state {
  padding: 3rem 2rem;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  color: #64748b;
}

.empty-state .emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {
  .pesan-header h2 {
    font-size: 1.1rem;
  }

  .table-card {
    border-radius: 20px;
  }

  .table-pesan thead th,
  .table-pesan tbody td {
    padding: 0.9rem;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 450px) {
  .pesan-wrapper {
    margin-top: 1.5rem;
  }

  .pesan-header h2 {
    font-size: 1rem;
    gap: 0.6rem;
  }

  .pesan-header .icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .pesan-count {
    font-size: 0.72rem;
    padding: 0.3rem 0.75rem;
  }

  .table-card {
    border-radius: 18px;
  }

  .table-pesan {
    min-width: 650px;
  }

  .table-pesan thead th {
    font-size: 0.8rem;
  }

  .table-pesan tbody td {
    font-size: 0.82rem;
  }

  .td-pesan-text {
    max-width: 250px;
  }

  .empty-state {
    padding: 2rem 1rem;
  }

  .empty-state .emoji {
    font-size: 2.5rem;
  }
}

/* =========================
   CONTENT HERO
========================= */

.content-hero {
  margin-left: 245px;
  min-height: 100vh;
  width: 100%;
  padding: 35px;

  background:
    radial-gradient(
      circle at top left,
      rgba(15, 94, 92, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(27, 138, 132, 0.08),
      transparent 30%
    ),
    #f4f7f6;

  transition: all 0.3s ease;
}

/* =========================
   TITLE
========================= */

.hero-title {
  font-size: 2rem;
  font-weight: 800;

  color: #071f1f;

  margin-bottom: 1.5rem;

  letter-spacing: -0.5px;
}

/* =========================
   MENU BUTTON
========================= */

.menu {
  display: flex;
  gap: 1rem;

  margin-bottom: 2rem;
}

.menu .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;

  padding: 0.9rem 1.4rem;

  border-radius: 16px;

  text-decoration: none;

  font-size: 0.92rem;
  font-weight: 600;

  transition: all 0.3s ease;

  position: relative;
  overflow: hidden;
}

/* edit button */
.menu .edit {
  background: linear-gradient(135deg, #0f5e5c, #1b8a84);

  color: white;

  box-shadow: 0 10px 25px rgba(15, 94, 92, 0.22);
}

/* efek glow */
.menu .btn::before {
  content: "";

  position: absolute;
  top: 0;
  left: -120%;

  width: 100%;
  height: 100%;

  background: rgba(255, 255, 255, 0.18);

  transform: skewX(-20deg);

  transition: 0.6s;
}

.menu .btn:hover::before {
  left: 120%;
}

.menu .btn:hover {
  transform: translateY(-4px);
}

/* =========================
   HR
========================= */

.content-hero hr {
  border: none;
  height: 1px;

  background: rgba(0, 0, 0, 0.06);

  margin-bottom: 2rem;
}

/* =========================
   HERO PREVIEW
========================= */

.hero-preview {
  position: relative;

  width: 100%;
  min-height: 550px;

  border-radius: 32px;

  overflow: hidden;

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);

  isolation: isolate;
}

/* dark overlay */
.hero-preview::before {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.78),
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.15)
  );

  z-index: -1;
}

/* glow effect */
.hero-preview::after {
  content: "";

  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at top right,
    rgba(15, 94, 92, 0.28),
    transparent 35%
  );

  z-index: -1;
}

/* =========================
   HERO OVERLAY
========================= */

.hero-overlay {
  max-width: 700px;

  padding: 4rem;

  color: white;
}

/* title 1 */
.hero-overlay .judul1 {
  font-size: 3rem;
  font-weight: 800;

  line-height: 1.1;

  margin-bottom: 0.3rem;

  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* title 2 */
.hero-overlay .judul2 {
  font-size: 3rem;
  font-weight: 800;

  background: linear-gradient(90deg, #ffffff, #d4af37);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  margin-bottom: 1.3rem;

  line-height: 1.1;
}

/* description */
.hero-overlay p {
  font-size: 1rem;
  line-height: 1.8;

  color: rgba(255, 255, 255, 0.82);

  margin-bottom: 2rem;

  max-width: 550px;
}

/* CTA BUTTON */
.hero-overlay .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.95rem 1.8rem;

  border-radius: 999px;

  background: linear-gradient(135deg, #0f5e5c, #1b8a84);

  color: white;

  text-decoration: none;

  font-size: 0.95rem;
  font-weight: 600;

  box-shadow: 0 10px 25px rgba(15, 94, 92, 0.3);

  transition: all 0.3s ease;
}

.hero-overlay .cta:hover {
  transform: translateY(-4px) scale(1.03);

  box-shadow: 0 18px 35px rgba(15, 94, 92, 0.35);
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {
  .content-hero {
    margin-left: 0;
    padding: 85px 20px 25px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .hero-preview {
    min-height: 480px;
    border-radius: 24px;
  }

  .hero-overlay {
    padding: 2.5rem;
  }

  .hero-overlay .judul1,
  .hero-overlay .judul2 {
    font-size: 2.3rem;
  }

  .hero-overlay p {
    font-size: 0.95rem;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 450px) {
  .content-hero {
    padding: 80px 16px 20px;
  }

  .hero-title {
    font-size: 1.45rem;
    margin-bottom: 1rem;
  }

  .menu {
    margin-bottom: 1.5rem;
  }

  .menu .btn {
    width: 100%;
    justify-content: center;

    border-radius: 14px;
  }

  .hero-preview {
    min-height: 420px;
    border-radius: 20px;
  }

  .hero-overlay {
    padding: 1.5rem;
  }

  .hero-overlay .judul1,
  .hero-overlay .judul2 {
    font-size: 1.8rem;
  }

  .hero-overlay p {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .hero-overlay .cta {
    width: 100%;
    padding: 0.9rem;
    font-size: 0.9rem;
  }
}

/* =========================
   CONTENT WRAPPER
========================= */

.content-wrapper {
  margin-left: 245px;

  width: calc(100% - 245px);

  min-height: 100vh;

  padding: 35px;

  box-sizing: border-box;

  background:
    radial-gradient(
      circle at top left,
      rgba(15, 94, 92, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(27, 138, 132, 0.08),
      transparent 30%
    ),
    #f4f7f6;

  transition: all 0.3s ease;
}

/* =========================
   TITLE
========================= */

.content__title {
  font-size: 2rem;
  font-weight: 800;

  color: #071f1f;

  margin-bottom: 0.4rem;

  letter-spacing: -0.5px;
}

.content__subtitle {
  font-size: 0.95rem;

  color: #64748b;

  margin-bottom: 2rem;
}

/* =========================
   BUTTON TAMBAH
========================= */

.btn--add {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;

  padding: 0.95rem 1.5rem;

  border-radius: 16px;

  text-decoration: none;

  background: linear-gradient(135deg, #0f5e5c, #1b8a84);

  color: white;

  font-size: 0.92rem;
  font-weight: 600;

  box-shadow: 0 10px 25px rgba(15, 94, 92, 0.22);

  transition: all 0.3s ease;

  margin-bottom: 2rem;
}

.btn--add:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 35px rgba(15, 94, 92, 0.3);
}

/* =========================
   GRID
========================= */

.about-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 1.5rem;
}

/* =========================
   CARD
========================= */

.about-card {
  position: relative;
  width: 40%;
  overflow: hidden;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.45);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.5);

  transition: all 0.35s ease;
}

/* top gradient */
.about-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 5px;

  background: linear-gradient(90deg, #0f5e5c, #1b8a84, #d4af37);

  z-index: 2;
}

/* hover */
.about-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 40px rgba(15, 94, 92, 0.14);
}

/* =========================
   IMAGE
========================= */

.about-card__image-container {
  width: 100%;
  height: 230px;

  overflow: hidden;
}

.about-card__img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.45s ease;
}

.about-card:hover .about-card__img {
  transform: scale(1.08);
}

/* =========================
   BODY
========================= */

.about-card__body {
  padding: 1.4rem;
}

.about-card__title {
  font-size: 1.15rem;
  font-weight: 700;

  color: #071f1f;

  margin-bottom: 0.8rem;

  line-height: 1.5;
}

.about-card__date {
  display: flex;
  align-items: center;
  gap: 0.45rem;

  color: #64748b;

  font-size: 0.85rem;
}

/* =========================
   ACTIONS
========================= */

.about-card__actions {
  display: flex;

  gap: 0.8rem;

  padding: 0 1.4rem 1.4rem;
}

/* BUTTON ACTION */
.btn-action {
  flex: 1;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  padding: 0.85rem;

  border-radius: 14px;

  text-decoration: none;

  font-size: 0.88rem;
  font-weight: 600;

  transition: all 0.3s ease;
}

/* EDIT */
.btn-action--edit {
  background: rgba(15, 94, 92, 0.1);

  color: #0f5e5c;
}

.btn-action--edit:hover {
  background: #0f5e5c;

  color: white;

  transform: translateY(-3px);
}

/* DELETE */
.btn-action--delete {
  background: rgba(239, 68, 68, 0.1);

  color: #ef4444;
}

.btn-action--delete:hover {
  background: #ef4444;

  color: white;

  transform: translateY(-3px);
}

/* =========================
   EMPTY STATE
========================= */

.about-grid__empty {
  padding: 3rem;

  text-align: center;

  border-radius: 22px;

  background: rgba(255, 255, 255, 0.75);

  color: #64748b;

  font-size: 1rem;
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {
  .content-wrapper {
    margin-left: 0;

    width: 100%;

    padding: 85px 20px 25px;
  }

  .content__title {
    font-size: 1.7rem;
  }

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-card__image-container {
    height: 210px;
  }

  .about-card {
    width: 150%;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 450px) {
  .content-wrapper {
    padding: 80px 16px 20px;
  }

  .content__title {
    font-size: 1.45rem;
  }

  .content__subtitle {
    font-size: 0.85rem;
  }

  .btn--add {
    width: 100%;

    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;

    gap: 1rem;
  }

  .about-card {
    border-radius: 20px;
  }

  .about-card__image-container {
    height: 200px;
  }

  .about-card__body {
    padding: 1.2rem;
  }

  .about-card__title {
    font-size: 1rem;
  }

  .about-card__actions {
    flex-direction: column;

    padding: 0 1.2rem 1.2rem;
  }
}

/* =========================
   CONTENT
========================= */

.content {
  margin-left: 245px;

  width: calc(100% - 245px);

  min-height: 100vh;

  padding: 35px;

  box-sizing: border-box;

  background:
    radial-gradient(
      circle at top left,
      rgba(15, 94, 92, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(27, 138, 132, 0.08),
      transparent 30%
    ),
    #f4f7f6;

  transition: all 0.3s ease;
}

/* =========================
   HEADER
========================= */

.header-dashboard {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;

  margin-bottom: 2rem;
}

.jadwal-title {
  font-size: 2rem;
  font-weight: 800;

  color: #071f1f;

  letter-spacing: -0.5px;
}

/* =========================
   BUTTON TAMBAH
========================= */

.btn-tambah {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;

  padding: 0.95rem 1.5rem;

  border-radius: 16px;

  text-decoration: none;

  background: linear-gradient(135deg, #0f5e5c, #1b8a84);

  color: white;

  font-size: 0.92rem;
  font-weight: 600;

  box-shadow: 0 10px 25px rgba(15, 94, 92, 0.22);

  transition: all 0.3s ease;
}

.btn-tambah:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 35px rgba(15, 94, 92, 0.3);
}

/* =========================
   TABLE
========================= */

.jadwal-table {
  width: 100%;

  border-collapse: collapse;

  overflow: hidden;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.45);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

/* =========================
   TABLE HEAD
========================= */

.jadwal-table th {
  padding: 1rem 1.2rem;

  text-align: left;

  background: linear-gradient(135deg, #0b2f2e, #124b49);

  color: white;

  font-size: 0.88rem;
  font-weight: 600;

  letter-spacing: 0.3px;
}

/* =========================
   TABLE BODY
========================= */

.jadwal-table td {
  padding: 1rem 1.2rem;

  font-size: 0.9rem;

  color: #334155;

  border-bottom: 1px solid rgba(0, 0, 0, 0.05);

  transition: all 0.25s ease;
}

.jadwal-table tr:hover td {
  background: rgba(15, 94, 92, 0.04);
}

/* =========================
   ACTION BUTTONS
========================= */

.jadwal-action {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* EDIT */
.jadwal-edit {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;

  padding: 0.7rem 1rem;

  border-radius: 12px;

  background: rgba(15, 94, 92, 0.1);

  color: #0f5e5c;

  text-decoration: none;

  font-size: 0.84rem;
  font-weight: 600;

  transition: all 0.3s ease;
}

.jadwal-edit:hover {
  background: #0f5e5c;

  color: white;

  transform: translateY(-3px);
}

/* DELETE */
.jadwal-delete {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;

  padding: 0.7rem 1rem;

  border-radius: 12px;

  background: rgba(239, 68, 68, 0.1);

  color: #ef4444;

  text-decoration: none;

  font-size: 0.84rem;
  font-weight: 600;

  transition: all 0.3s ease;
}

.jadwal-delete:hover {
  background: #ef4444;

  color: white;

  transform: translateY(-3px);
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {
  .content {
    margin-left: 0;

    width: 100%;

    padding: 85px 20px 25px;
  }

  .header-dashboard {
    flex-direction: column;
    align-items: flex-start;
  }

  .jadwal-title {
    font-size: 1.7rem;
  }

  .jadwal-table {
    display: block;

    overflow-x: auto;

    white-space: nowrap;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 450px) {
  .content {
    padding: 80px 16px 20px;
  }

  .jadwal-title {
    font-size: 1.45rem;
  }

  .btn-tambah {
    width: 100%;

    justify-content: center;

    border-radius: 14px;
  }

  .jadwal-table th,
  .jadwal-table td {
    padding: 0.9rem;

    font-size: 0.82rem;
  }

  .jadwal-action {
    flex-direction: column;
  }

  .jadwal-edit,
  .jadwal-delete {
    width: 100%;

    justify-content: center;
  }
}

/* =========================
   CONTENT
========================= */

.content {
  margin-left: 245px;

  width: calc(100% - 245px);

  min-height: 100vh;

  padding: 35px;

  box-sizing: border-box;

  background:
    radial-gradient(
      circle at top left,
      rgba(15, 94, 92, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(27, 138, 132, 0.08),
      transparent 30%
    ),
    #f4f7f6;

  transition: all 0.3s ease;
}

/* =========================
   HEADER
========================= */

.layanan-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;

  margin-bottom: 2rem;
}

.header-dashboard {
  display: flex;
  align-items: center;
  gap: 0.8rem;

  font-size: 2rem;
  font-weight: 800;

  color: #071f1f;

  letter-spacing: -0.5px;
}

.header-dashboard i {
  color: #0f5e5c;
}

/* =========================
   BUTTON TAMBAH
========================= */

.layanan-btn-add {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;

  padding: 0.95rem 1.5rem;

  border-radius: 16px;

  text-decoration: none;

  background: linear-gradient(135deg, #0f5e5c, #1b8a84);

  color: white;

  font-size: 0.92rem;
  font-weight: 600;

  box-shadow: 0 10px 25px rgba(15, 94, 92, 0.22);

  transition: all 0.3s ease;
}

.layanan-btn-add:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 35px rgba(15, 94, 92, 0.3);
}

/* =========================
   TABLE CONTAINER
========================= */

.table-container {
  overflow-x: auto;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.45);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

/* =========================
   TABLE
========================= */

.layanan-table {
  width: 100%;

  border-collapse: collapse;

  min-width: 850px;
}

/* =========================
   TABLE HEAD
========================= */

.layanan-table th {
  padding: 1rem 1.2rem;

  text-align: left;

  background: linear-gradient(135deg, #0b2f2e, #124b49);

  color: white;

  font-size: 0.88rem;
  font-weight: 600;

  letter-spacing: 0.3px;
}

/* =========================
   TABLE BODY
========================= */

.layanan-table td {
  padding: 1rem 1.2rem;

  font-size: 0.9rem;

  color: #334155;

  border-bottom: 1px solid rgba(0, 0, 0, 0.05);

  vertical-align: middle;

  transition: all 0.25s ease;
}

.layanan-table tr:hover td {
  background: rgba(15, 94, 92, 0.04);
}

/* =========================
   ICON LAYANAN
========================= */

.icon-layanan i {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: rgba(15, 94, 92, 0.1);

  color: #0f5e5c;

  font-size: 1rem;
}

/* =========================
   JUDUL
========================= */

.judul-layanan {
  font-weight: 700;

  color: #071f1f;
}

/* =========================
   DESKRIPSI
========================= */

.deskripsi-layanan {
  max-width: 320px;

  line-height: 1.7;

  color: #64748b;
}

/* =========================
   AKSI
========================= */

.layanan-aksi {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

/* BUTTON */
.btn-edit,
.btn-hapus {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;

  padding: 0.72rem 1rem;

  border-radius: 12px;

  text-decoration: none;

  font-size: 0.84rem;
  font-weight: 600;

  transition: all 0.3s ease;
}

/* EDIT */
.btn-edit {
  background: rgba(15, 94, 92, 0.1);

  color: #0f5e5c;
}

.btn-edit:hover {
  background: #0f5e5c;

  color: white;

  transform: translateY(-3px);
}

/* HAPUS */
.btn-hapus {
  background: rgba(239, 68, 68, 0.1);

  color: #ef4444;
}

.btn-hapus:hover {
  background: #ef4444;

  color: white;

  transform: translateY(-3px);
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {
  .content {
    margin-left: 0;

    width: 100%;

    padding: 85px 20px 25px;
  }

  .layanan-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-dashboard {
    font-size: 1.7rem;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 450px) {
  .content {
    padding: 80px 16px 20px;
  }

  .header-dashboard {
    font-size: 1.45rem;
  }

  .layanan-btn-add {
    width: 100%;

    justify-content: center;

    border-radius: 14px;
  }

  .layanan-table th,
  .layanan-table td {
    padding: 0.9rem;

    font-size: 0.82rem;
  }

  .icon-layanan i {
    width: 38px;
    height: 38px;

    border-radius: 12px;
  }

  .layanan-aksi {
    flex-direction: column;
  }

  .btn-edit,
  .btn-hapus {
    width: 100%;

    justify-content: center;
  }
}

/* =========================
   CONTENT
========================= */

.berita-content {
  margin-left: 245px;

  width: calc(100% - 245px);

  min-height: 100vh;

  padding: 35px;

  box-sizing: border-box;

  background:
    radial-gradient(
      circle at top left,
      rgba(15, 94, 92, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(27, 138, 132, 0.08),
      transparent 30%
    ),
    #f4f7f6;

  transition: all 0.3s ease;
}

/* =========================
   TITLE
========================= */

.berita-title {
  font-size: 2rem;
  font-weight: 800;

  color: #071f1f;

  margin-bottom: 1.5rem;

  letter-spacing: -0.5px;
}

/* =========================
   BUTTON TAMBAH
========================= */

.berita-btn-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.95rem 1.5rem;

  margin-bottom: 2rem;

  border-radius: 16px;

  background: linear-gradient(135deg, #0f5e5c, #1b8a84);

  color: white;

  text-decoration: none;

  font-size: 0.92rem;
  font-weight: 600;

  box-shadow: 0 10px 25px rgba(15, 94, 92, 0.22);

  transition: all 0.3s ease;
}

.berita-btn-add:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 35px rgba(15, 94, 92, 0.3);
}

/* =========================
   TABLE WRAPPER
========================= */

.berita-table {
  width: 100%;

  border-collapse: collapse;

  overflow: hidden;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.45);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

/* =========================
   TABLE HEAD
========================= */

.berita-table th {
  padding: 1rem 1.2rem;

  text-align: left;

  background: linear-gradient(135deg, #0b2f2e, #124b49);

  color: white;

  font-size: 0.88rem;
  font-weight: 600;

  letter-spacing: 0.3px;
}

/* =========================
   TABLE BODY
========================= */

.berita-table td {
  padding: 1rem 1.2rem;

  font-size: 0.9rem;

  color: #334155;

  border-bottom: 1px solid rgba(0, 0, 0, 0.05);

  vertical-align: middle;

  transition: all 0.25s ease;
}

.berita-table tr:hover td {
  background: rgba(15, 94, 92, 0.04);
}

/* =========================
   IMAGE
========================= */

.berita-img {
  width: 110px;
  height: 75px;

  object-fit: cover;

  border-radius: 14px;

  border: 2px solid rgba(15, 94, 92, 0.08);

  transition: all 0.3s ease;
}

.berita-img:hover {
  transform: scale(1.05);
}

/* =========================
   DESKRIPSI
========================= */

.berita-table td:nth-child(3) {
  max-width: 320px;

  line-height: 1.7;

  color: #64748b;
}

/* =========================
   AKSI
========================= */

.berita-aksi {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

/* BUTTON */
.btn-edit,
.btn-hapus {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.72rem 1rem;

  border-radius: 12px;

  text-decoration: none;

  font-size: 0.84rem;
  font-weight: 600;

  transition: all 0.3s ease;
}

/* EDIT */
.btn-edit {
  background: rgba(15, 94, 92, 0.1);

  color: #0f5e5c;
}

.btn-edit:hover {
  background: #0f5e5c;

  color: white;

  transform: translateY(-3px);
}

/* HAPUS */
.btn-hapus {
  background: rgba(239, 68, 68, 0.1);

  color: #ef4444;
}

.btn-hapus:hover {
  background: #ef4444;

  color: white;

  transform: translateY(-3px);
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {
  .berita-content {
    margin-left: 0;

    width: 100%;

    padding: 85px 20px 25px;
  }

  .berita-title {
    font-size: 1.7rem;
  }

  .berita-table {
    display: block;

    overflow-x: auto;

    white-space: nowrap;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 450px) {
  .berita-content {
    padding: 80px 16px 20px;
  }

  .berita-title {
    font-size: 1.45rem;
  }

  .berita-btn-add {
    width: 100%;

    border-radius: 14px;
  }

  .berita-table th,
  .berita-table td {
    padding: 0.9rem;

    font-size: 0.82rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .berita-img {
    width: 90px;
    height: 65px;

    border-radius: 10px;
  }

  .berita-aksi {
    flex-direction: column;
  }

  .btn-edit,
  .btn-hapus {
    width: 100%;
  }
}

/* =========================
   PAGE WRAPPER
========================= */

.kegiatan-page-wrapper {
  margin-left: 245px;

  width: calc(100% - 245px);

  min-height: 100vh;

  padding: 35px;

  box-sizing: border-box;

  background:
    radial-gradient(
      circle at top left,
      rgba(15, 94, 92, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(27, 138, 132, 0.08),
      transparent 30%
    ),
    #f4f7f6;

  transition: all 0.3s ease;
}

/* =========================
   HEADER
========================= */

.kegiatan-header-container {
  margin-bottom: 2.5rem;
}

.kegiatan-main-title {
  font-size: 2rem;
  font-weight: 800;

  color: #071f1f;

  margin-bottom: 0.5rem;

  letter-spacing: -0.5px;
}

.kegiatan-sub-title {
  font-size: 0.95rem;

  color: #64748b;

  margin-bottom: 1.8rem;
}

/* =========================
   BUTTON
========================= */

.kegiatan-btn-insert {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;

  padding: 0.95rem 1.5rem;

  border-radius: 16px;

  background: linear-gradient(135deg, #0f5e5c, #1b8a84);

  color: white;

  text-decoration: none;

  font-size: 0.92rem;
  font-weight: 600;

  box-shadow: 0 10px 25px rgba(15, 94, 92, 0.22);

  transition: all 0.3s ease;
}

.kegiatan-btn-insert:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 35px rgba(15, 94, 92, 0.3);
}

/* =========================
   GRID
========================= */

.kegiatan-grid-layout {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 1.5rem;
}

/* =========================
   CARD
========================= */

.kegiatan-item-card {
  position: relative;

  overflow: hidden;

  border-radius: 26px;

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.45);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.45);

  transition: all 0.35s ease;
}

.kegiatan-item-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 40px rgba(15, 94, 92, 0.14);
}

/* =========================
   IMAGE
========================= */

.kegiatan-thumb {
  position: relative;

  width: 100%;
  height: 240px;

  overflow: hidden;
}

.kegiatan-thumb img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.45s ease;
}

.kegiatan-item-card:hover .kegiatan-thumb img {
  transform: scale(1.08);
}

/* overlay image */
.kegiatan-thumb::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

/* =========================
   BADGE
========================= */

.kegiatan-badge-tag {
  position: absolute;

  top: 1rem;
  left: 1rem;

  z-index: 2;

  padding: 0.45rem 0.9rem;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.16);

  backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.2);

  color: white;

  font-size: 0.78rem;
  font-weight: 600;

  text-transform: capitalize;
}

/* =========================
   INFO
========================= */

.kegiatan-info-box {
  padding: 1.5rem;
}

.kegiatan-text-judul {
  font-size: 1.15rem;
  font-weight: 700;

  color: #071f1f;

  margin-bottom: 0.8rem;

  line-height: 1.5;
}

.kegiatan-text-deskripsi {
  font-size: 0.9rem;

  color: #64748b;

  line-height: 1.8;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;

  overflow: hidden;
}

/* =========================
   FOOTER ACTION
========================= */

.kegiatan-footer-action {
  display: flex;

  gap: 0.8rem;

  padding: 0 1.5rem 1.5rem;
}

/* BUTTON */
.kegiatan-link-edit,
.kegiatan-link-delete {
  flex: 1;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  padding: 0.85rem;

  border-radius: 14px;

  text-decoration: none;

  font-size: 0.88rem;
  font-weight: 600;

  transition: all 0.3s ease;
}

/* EDIT */
.kegiatan-link-edit {
  background: rgba(15, 94, 92, 0.1);

  color: #0f5e5c;
}

.kegiatan-link-edit:hover {
  background: #0f5e5c;

  color: white;

  transform: translateY(-3px);
}

/* DELETE */
.kegiatan-link-delete {
  background: rgba(239, 68, 68, 0.1);

  color: #ef4444;
}

.kegiatan-link-delete:hover {
  background: #ef4444;

  color: white;

  transform: translateY(-3px);
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {
  .kegiatan-page-wrapper {
    margin-left: 0;

    width: 100%;

    padding: 85px 20px 25px;
  }

  .kegiatan-main-title {
    font-size: 1.7rem;
  }

  .kegiatan-grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 450px) {
  .kegiatan-page-wrapper {
    padding: 80px 16px 20px;
  }

  .kegiatan-main-title {
    font-size: 1.45rem;
  }

  .kegiatan-sub-title {
    font-size: 0.85rem;
  }

  .kegiatan-btn-insert {
    width: 100%;

    justify-content: center;

    border-radius: 14px;
  }

  .kegiatan-grid-layout {
    grid-template-columns: 1fr;

    gap: 1rem;
  }

  .kegiatan-item-card {
    border-radius: 22px;
  }

  .kegiatan-thumb {
    height: 210px;
  }

  .kegiatan-info-box {
    padding: 1.2rem;
  }

  .kegiatan-text-judul {
    font-size: 1rem;
  }

  .kegiatan-text-deskripsi {
    font-size: 0.84rem;
  }

  .kegiatan-footer-action {
    flex-direction: column;

    padding: 0 1.2rem 1.2rem;
  }
}

/* =========================
   MAIN WRAPPER
========================= */

.kajian-main-wrapper {
  margin-left: 245px;

  width: calc(100% - 245px);

  min-height: 100vh;

  padding: 35px;

  box-sizing: border-box;

  background:
    radial-gradient(
      circle at top left,
      rgba(15, 94, 92, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(27, 138, 132, 0.08),
      transparent 30%
    ),
    #f4f7f6;

  transition: all 0.3s ease;
}

/* =========================
   HEADER
========================= */

.kajian-header-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;

  margin-bottom: 2.5rem;
}

.kajian-title {
  font-size: 2rem;
  font-weight: 800;

  color: #071f1f;

  letter-spacing: -0.5px;
}

/* =========================
   BUTTON ADD
========================= */

.kajian-btn-add {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;

  padding: 0.95rem 1.5rem;

  border-radius: 16px;

  background: linear-gradient(135deg, #0f5e5c, #1b8a84);

  color: white;

  text-decoration: none;

  font-size: 0.92rem;
  font-weight: 600;

  box-shadow: 0 10px 25px rgba(15, 94, 92, 0.22);

  transition: all 0.3s ease;
}

.kajian-btn-add:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 35px rgba(15, 94, 92, 0.3);
}

/* =========================
   GRID
========================= */

.kajian-grid-layout {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 1.5rem;
}

/* =========================
   CARD
========================= */

.kajian-item-card {
  overflow: hidden;

  border-radius: 26px;

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.45);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.45);

  transition: all 0.35s ease;
}

.kajian-item-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 40px rgba(15, 94, 92, 0.14);
}

/* =========================
   IMAGE
========================= */

.kajian-img-box {
  width: 100%;
  height: 230px;

  overflow: hidden;

  position: relative;
}

.kajian-img-box img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.45s ease;
}

.kajian-item-card:hover .kajian-img-box img {
  transform: scale(1.08);
}

/* overlay */
.kajian-img-box::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.28), transparent);
}

/* =========================
   CONTENT
========================= */

.kajian-content-box {
  padding: 1.5rem;
}

.kajian-content-box h3 {
  font-size: 1.15rem;
  font-weight: 700;

  color: #071f1f;

  margin-bottom: 0.8rem;

  line-height: 1.5;
}

.kajian-content-box p {
  font-size: 0.9rem;

  color: #64748b;

  line-height: 1.8;

  margin-bottom: 1.5rem;
}

/* =========================
   ACTIONS
========================= */

.kajian-actions {
  display: flex;

  gap: 0.8rem;
}

/* BUTTONS */
.kajian-btn-edit,
.kajian-btn-delete {
  flex: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0.85rem;

  border-radius: 14px;

  text-decoration: none;

  font-size: 0.88rem;
  font-weight: 600;

  transition: all 0.3s ease;
}

/* EDIT */
.kajian-btn-edit {
  background: rgba(15, 94, 92, 0.1);

  color: #0f5e5c;
}

.kajian-btn-edit:hover {
  background: #0f5e5c;

  color: white;

  transform: translateY(-3px);
}

/* DELETE */
.kajian-btn-delete {
  background: rgba(239, 68, 68, 0.1);

  color: #ef4444;
}

.kajian-btn-delete:hover {
  background: #ef4444;

  color: white;

  transform: translateY(-3px);
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {
  .kajian-main-wrapper {
    margin-left: 0;

    width: 100%;

    padding: 85px 20px 25px;
  }

  .kajian-header-area {
    flex-direction: column;
    align-items: flex-start;
  }

  .kajian-title {
    font-size: 1.7rem;
  }

  .kajian-grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 450px) {
  .kajian-main-wrapper {
    padding: 80px 16px 20px;
  }

  .kajian-title {
    font-size: 1.45rem;
  }

  .kajian-btn-add {
    width: 100%;

    justify-content: center;

    border-radius: 14px;
  }

  .kajian-grid-layout {
    grid-template-columns: 1fr;

    gap: 1rem;
  }

  .kajian-item-card {
    border-radius: 22px;
  }

  .kajian-img-box {
    height: 210px;
  }

  .kajian-content-box {
    padding: 1.2rem;
  }

  .kajian-content-box h3 {
    font-size: 1rem;
  }

  .kajian-content-box p {
    font-size: 0.84rem;
  }

  .kajian-actions {
    flex-direction: column;
  }
}

/* =========================
   MAIN CONTENT
========================= */

.galeri-main-content {
  margin-left: 245px;

  width: calc(100% - 245px);

  min-height: 100vh;

  padding: 35px;

  box-sizing: border-box;

  background:
    radial-gradient(
      circle at top left,
      rgba(15, 94, 92, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(27, 138, 132, 0.08),
      transparent 30%
    ),
    #f4f7f6;

  transition: all 0.3s ease;
}

/* =========================
   HEADER
========================= */

.galeri-header-section {
  margin-bottom: 1.8rem;
}

.galeri-page-title {
  font-size: 2rem;
  font-weight: 800;

  color: #071f1f;

  margin-bottom: 0.5rem;

  letter-spacing: -0.5px;
}

.galeri-page-subtitle {
  font-size: 0.95rem;

  color: #64748b;
}

/* =========================
   BUTTON ADD
========================= */

.btn-galeri-insert {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;

  padding: 0.95rem 1.5rem;

  border-radius: 16px;

  background: linear-gradient(135deg, #0f5e5c, #1b8a84);

  color: white;

  text-decoration: none;

  font-size: 0.92rem;
  font-weight: 600;

  box-shadow: 0 10px 25px rgba(15, 94, 92, 0.22);

  margin-bottom: 2rem;

  transition: all 0.3s ease;
}

.btn-galeri-insert:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 35px rgba(15, 94, 92, 0.3);
}

/* =========================
   GRID
========================= */

.galeri-grid-system {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 1.5rem;
}

/* =========================
   CARD
========================= */

.galeri-item-card {
  overflow: hidden;

  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.45);
  transition: all 0.35s ease;
}

.galeri-item-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 40px rgba(15, 94, 92, 0.14);
}

/* =========================
   IMAGE
========================= */

.galeri-img-wrapper {
  width: 100%;
  height: 240px;

  overflow: hidden;

  position: relative;
}

.galeri-img-wrapper img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.45s ease;
}

.galeri-item-card:hover .galeri-img-wrapper img {
  transform: scale(1.08);
}

/* overlay */
.galeri-img-wrapper::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.28), transparent);
}

/* =========================
   BODY
========================= */

.galeri-item-body {
  padding: 1.4rem;
}

.galeri-deskripsi {
  font-size: 0.92rem;

  color: #475569;

  line-height: 1.8;

  margin-bottom: 1rem;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;

  overflow: hidden;
}

/* DATE */
.galeri-date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  font-size: 0.82rem;
  font-weight: 500;

  color: #64748b;
}

/* =========================
   ACTION
========================= */

.galeri-item-action {
  display: flex;

  gap: 0.8rem;

  padding: 0 1.4rem 1.4rem;
}

/* BUTTON */
.galeri-link-edit,
.galeri-link-delete {
  flex: 1;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  padding: 0.85rem;

  border-radius: 14px;

  text-decoration: none;

  font-size: 0.88rem;
  font-weight: 600;

  transition: all 0.3s ease;
}

/* EDIT */
.galeri-link-edit {
  background: rgba(15, 94, 92, 0.1);

  color: #0f5e5c;
}

.galeri-link-edit:hover {
  background: #0f5e5c;

  color: white;

  transform: translateY(-3px);
}

/* DELETE */
.galeri-link-delete {
  background: rgba(239, 68, 68, 0.1);

  color: #ef4444;
}

.galeri-link-delete:hover {
  background: #ef4444;

  color: white;

  transform: translateY(-3px);
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {
  .galeri-main-content {
    margin-left: 0;

    width: 100%;

    padding: 85px 20px 25px;
  }

  .galeri-page-title {
    font-size: 1.7rem;
  }

  .galeri-grid-system {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 450px) {
  .galeri-main-content {
    padding: 80px 16px 20px;
  }

  .galeri-page-title {
    font-size: 1.45rem;
  }

  .galeri-page-subtitle {
    font-size: 0.85rem;
  }

  .btn-galeri-insert {
    width: 100%;

    justify-content: center;

    border-radius: 14px;
  }

  .galeri-grid-system {
    grid-template-columns: 1fr;

    gap: 1rem;
  }

  .galeri-item-card {
    border-radius: 22px;
  }

  .galeri-img-wrapper {
    height: 210px;
  }

  .galeri-item-body {
    padding: 1.2rem;
  }

  .galeri-deskripsi {
    font-size: 0.84rem;
  }

  .galeri-item-action {
    flex-direction: column;

    padding: 0 1.2rem 1.2rem;
  }
}

/* =========================
   MAIN CONTENT
========================= */

.main {
  margin-left: 245px;

  width: calc(100% - 245px);

  min-height: 100vh;

  padding: 35px;

  box-sizing: border-box;

  background:
    radial-gradient(
      circle at top left,
      rgba(15, 94, 92, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(27, 138, 132, 0.08),
      transparent 30%
    ),
    #f4f7f6;

  transition: all 0.3s ease;
}

/* =========================
   TOP BAR
========================= */

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;

  margin-bottom: 2rem;
}

.top-bar h1 {
  font-size: 2rem;
  font-weight: 800;

  color: #071f1f;

  letter-spacing: -0.5px;
}

/* =========================
   BUTTON TAMBAH
========================= */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;

  padding: 0.95rem 1.5rem;

  border-radius: 16px;

  background: linear-gradient(135deg, #0f5e5c, #1b8a84);

  color: white;

  text-decoration: none;

  font-size: 0.92rem;
  font-weight: 600;

  box-shadow: 0 10px 25px rgba(15, 94, 92, 0.22);

  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 35px rgba(15, 94, 92, 0.3);
}

/* =========================
   CARD TABLE
========================= */

.card {
  overflow-x: auto;

  border-radius: 26px;

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.45);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

/* =========================
   TABLE
========================= */

.table-infaq {
  width: 100%;

  border-collapse: collapse;

  /* min-width: 850px; */
}

/* =========================
   TABLE HEAD
========================= */

.table-infaq thead {
  background: linear-gradient(135deg, #0b2f2e, #124b49);
}

.table-infaq th {
  padding: 1rem 1.2rem;

  text-align: left;

  color: white;

  font-size: 0.88rem;
  font-weight: 600;

  letter-spacing: 0.3px;
}

/* =========================
   TABLE BODY
========================= */

.table-infaq td {
  padding: 1rem 1.2rem;

  font-size: 0.9rem;

  color: #334155;

  border-bottom: 1px solid rgba(0, 0, 0, 0.05);

  vertical-align: middle;

  transition: all 0.25s ease;
}

.table-infaq tr:hover td {
  background: rgba(15, 94, 92, 0.04);
}

/* =========================
   BADGE
========================= */

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.45rem 0.9rem;

  border-radius: 999px;

  background: rgba(15, 94, 92, 0.1);

  color: #0f5e5c;

  font-size: 0.78rem;
  font-weight: 700;

  text-transform: capitalize;
}

/* =========================
   BUTTON AKSI
========================= */

.btn-edit,
.btn-delete {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.7rem 1rem;

  border-radius: 12px;

  text-decoration: none;

  font-size: 0.82rem;
  font-weight: 600;

  margin-right: 0.4rem;

  transition: all 0.3s ease;
}

/* EDIT */
.btn-edit {
  background: rgba(15, 94, 92, 0.1);

  color: #0f5e5c;
}

.btn-edit:hover {
  background: #0f5e5c;

  color: white;

  transform: translateY(-3px);
}

/* DELETE */
.btn-delete {
  background: rgba(239, 68, 68, 0.1);

  color: #ef4444;
}

.btn-delete:hover {
  background: #ef4444;

  color: white;

  transform: translateY(-3px);
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {
  .main {
    margin-left: 0;

    width: 100%;

    padding: 85px 20px 25px;
  }

  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-bar h1 {
    font-size: 1.7rem;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 450px) {
  .main {
    padding: 80px 16px 20px;
  }

  .top-bar h1 {
    font-size: 1.45rem;
  }

  .btn-primary {
    width: 100%;

    justify-content: center;

    border-radius: 14px;
  }

  .table-infaq th,
  .table-infaq td {
    padding: 0.9rem;

    font-size: 0.82rem;
  }

  .btn-edit,
  .btn-delete {
    width: 100%;

    margin: 0.2rem 0;

    justify-content: center;
  }

  .table-infaq td:last-child {
    min-width: 140px;
  }
}

/* =========================
   CONTENT
========================= */

.content {
  margin-left: 245px;

  width: calc(100% - 245px);

  min-height: 100vh;

  padding: 35px;

  box-sizing: border-box;

  background:
    radial-gradient(
      circle at top left,
      rgba(15, 94, 92, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(27, 138, 132, 0.08),
      transparent 30%
    ),
    #f4f7f6;

  transition: all 0.3s ease;
}

/* =========================
   TITLE
========================= */

.content h1 {
  font-size: 2rem;
  font-weight: 800;

  color: #071f1f;

  margin-bottom: 1.5rem;

  letter-spacing: -0.5px;
}

/* =========================
   BUTTON TAMBAH
========================= */

.btn-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.95rem 1.5rem;

  margin-bottom: 2rem;

  border-radius: 16px;

  background: linear-gradient(135deg, #0f5e5c, #1b8a84);

  color: white;

  text-decoration: none;

  font-size: 0.92rem;
  font-weight: 600;

  box-shadow: 0 10px 25px rgba(15, 94, 92, 0.22);

  transition: all 0.3s ease;
}

.btn-add:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 35px rgba(15, 94, 92, 0.3);
}

/* =========================
   TABLE CARD
========================= */

.table-card {
  overflow: hidden;

  border-radius: 26px;

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.45);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

/* =========================
   TABLE WRAPPER
========================= */

.table-wrapper {
  overflow-x: auto;
}

/* =========================
   TABLE
========================= */

.table-program,
.table-infaq {
  width: 100%;

  border-collapse: collapse;

  min-width: 700px;
}

/* =========================
   TABLE HEAD
========================= */

.table-program thead {
  background: linear-gradient(135deg, #0b2f2e, #124b49);
}

.table-program th {
  padding: 1rem 1.2rem;

  color: white;

  text-align: left;

  font-size: 0.88rem;
  font-weight: 600;

  letter-spacing: 0.3px;
}

/* =========================
   TABLE BODY
========================= */

.table-program td {
  padding: 1rem 1.2rem;

  font-size: 0.9rem;

  color: #334155;

  border-bottom: 1px solid rgba(0, 0, 0, 0.05);

  vertical-align: middle;

  transition: all 0.25s ease;
}

.table-program tr:hover td {
  background: rgba(15, 94, 92, 0.04);
}

/* =========================
   ICON
========================= */

.td-icon {
  text-align: center;

  font-size: 1.3rem;

  color: #0f5e5c;

  font-weight: bold;
}

/* =========================
   ACTION GROUP
========================= */

.action-group {
  display: flex;

  gap: 0.7rem;

  flex-wrap: wrap;
}

/* =========================
   BUTTON AKSI
========================= */

.btn-edit,
.btn-delete {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.72rem 1rem;

  border-radius: 12px;

  text-decoration: none;

  font-size: 0.84rem;
  font-weight: 600;

  transition: all 0.3s ease;
}

/* EDIT */
.btn-edit {
  background: rgba(15, 94, 92, 0.1);

  color: #0f5e5c;
}

.btn-edit:hover {
  background: #0f5e5c;

  color: white;

  transform: translateY(-3px);
}

/* DELETE */
.btn-delete {
  background: rgba(239, 68, 68, 0.1);

  color: #ef4444;
}

.btn-delete:hover {
  background: #ef4444;

  color: white;

  transform: translateY(-3px);
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {
  .content {
    margin-left: 0;

    width: 100%;

    padding: 85px 20px 25px;
  }

  .content h1 {
    font-size: 1.7rem;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 450px) {
  .content {
    padding: 80px 16px 20px;
  }

  .content h1 {
    font-size: 1.45rem;
  }

  .btn-add {
    width: 100%;

    border-radius: 14px;
  }

  .table-program th,
  .table-program td {
    padding: 0.9rem;

    font-size: 0.82rem;
  }

  .action-group {
    flex-direction: column;
  }

  .btn-edit,
  .btn-delete {
    width: 100%;
  }

  .td-icon {
    font-size: 1.1rem;
  }
}

/* =========================
   WRAPPER
========================= */

.pengurus-wrap {
  margin-left: 245px;

  width: calc(100% - 245px);

  min-height: 100vh;

  padding: 35px;

  box-sizing: border-box;

  background:
    radial-gradient(
      circle at top left,
      rgba(15, 94, 92, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(27, 138, 132, 0.08),
      transparent 30%
    ),
    #f4f7f6;

  transition: all 0.3s ease;
}

/* =========================
   TITLE
========================= */

.pengurus-title {
  font-size: 2rem;
  font-weight: 800;

  color: #071f1f;

  margin-bottom: 2rem;

  letter-spacing: -0.5px;
}

/* =========================
   CARD BOX
========================= */

.pengurus-cardbox {
  display: flex;

  gap: 1rem;

  margin-bottom: 2rem;
}

/* =========================
   CARD
========================= */

.pengurus-card {
  flex: 1;

  padding: 1.8rem;

  border-radius: 24px;

  background: linear-gradient(
    135deg,
    rgba(15, 94, 92, 0.95),
    rgba(27, 138, 132, 0.9)
  );

  color: white;

  box-shadow: 0 12px 30px rgba(15, 94, 92, 0.22);

  position: relative;

  overflow: hidden;
}

.pengurus-card::before {
  content: "";

  position: absolute;

  width: 160px;
  height: 160px;

  background: rgba(255, 255, 255, 0.08);

  border-radius: 50%;

  top: -60px;
  right: -60px;
}

.pengurus-card h3 {
  font-size: 1rem;
  font-weight: 500;

  margin-bottom: 0.8rem;

  opacity: 0.9;
}

.pengurus-card p {
  font-size: 2.2rem;
  font-weight: 800;
}

/* =========================
   BUTTON ADD
========================= */

.pengurus-btn-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.95rem 1.5rem;

  margin-bottom: 2rem;

  border-radius: 16px;

  background: linear-gradient(135deg, #0f5e5c, #1b8a84);

  color: white;

  text-decoration: none;

  font-size: 0.92rem;
  font-weight: 600;

  box-shadow: 0 10px 25px rgba(15, 94, 92, 0.22);

  transition: all 0.3s ease;
}

.pengurus-btn-add:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 35px rgba(15, 94, 92, 0.3);
}

/* =========================
   TABLE FIX FINAL KOLOM NO
========================= */

.pengurus-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed; /* PENTING: bikin lebar kolom bisa dikontrol */
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

/* HEADER */
.pengurus-table th {
  padding: 1rem 1.2rem;
  text-align: left;
  background: linear-gradient(135deg, #0b2f2e, #124b49);
  color: white;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* BODY */
.pengurus-table td {
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  color: #334155;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  vertical-align: middle;
  transition: all 0.25s ease;
}

.pengurus-table tr:hover td {
  background: rgba(15, 94, 92, 0.04);
}

/* =========================
   KOLOM NO (FIX TOTAL)
========================= */

.pengurus-table th:nth-child(1),
.pengurus-table td:nth-child(1) {
  width: 40px !important;   /* dipaksa kecil */
  max-width: 40px;
  text-align: center;
  padding: 0.4rem 0.3rem !important;
  font-size: 0.85rem;
}

/* biar kolom lain tetap normal */
.pengurus-table th:nth-child(2),
.pengurus-table td:nth-child(2) {
  width: auto;
}

/* =========================
   BUTTON AKSI
========================= */

.pengurus-edit,
.pengurus-delete {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.72rem 1rem;

  border-radius: 12px;

  text-decoration: none;

  font-size: 0.84rem;
  font-weight: 600;

  margin-right: 0.4rem;

  transition: all 0.3s ease;
}

/* EDIT */
.pengurus-edit {
  background: rgba(15, 94, 92, 0.1);

  color: #0f5e5c;
}

.pengurus-edit:hover {
  background: #0f5e5c;

  color: white;

  transform: translateY(-3px);
}

/* DELETE */
.pengurus-delete {
  background: rgba(239, 68, 68, 0.1);

  color: #ef4444;
}

.pengurus-delete:hover {
  background: #ef4444;

  color: white;

  transform: translateY(-3px);
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {
  .pengurus-wrap {
    margin-left: 0;
    width: 100%;
    padding: 85px 20px 25px;
  }

  .pengurus-title {
    font-size: 1.7rem;
  }

  .pengurus-table th,
  .pengurus-table td {
    font-size: 13px;
    padding: 6px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 450px) {
  .pengurus-wrap {
    padding: 80px 16px 20px;
  }

  .pengurus-title {
    font-size: 1.45rem;
  }

  .pengurus-card {
    padding: 1.5rem;

    border-radius: 20px;
  }

  .pengurus-card p {
    font-size: 1.8rem;
  }

  .pengurus-btn-add {
    width: 100%;

    border-radius: 14px;
  }

  .pengurus-table th,
  .pengurus-table td {
    padding: 0.9rem;
    width: 100%;
    font-size: 0.82rem;
  }

  .pengurus-edit,
  .pengurus-delete {
    width: 100%;

    margin: 0.2rem 0;
  }
}

/* =========================
   CONTAINER
========================= */

.container {
  margin-left: 245px;

  width: calc(100% - 245px);

  min-height: 100vh;

  padding: 35px;

  box-sizing: border-box;

  display: flex;
  justify-content: center;
  align-items: center;

  background:
    radial-gradient(
      circle at top left,
      rgba(15, 94, 92, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(27, 138, 132, 0.08),
      transparent 30%
    ),
    #f4f7f6;

  transition: all 0.3s ease;
}

/* =========================
   CARD
========================= */

.card {
  width: 100%;
  max-width: 700px;

  padding: 2rem;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.45);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

/* =========================
   TITLE
========================= */

.card h2 {
  font-size: 2rem;
  font-weight: 800;

  color: #071f1f;

  margin-bottom: 2rem;

  letter-spacing: -0.5px;
}

/* =========================
   FORM
========================= */

form {
  display: flex;
  flex-direction: column;

  gap: 1.3rem;
}

/* =========================
   LABEL
========================= */

form label {
  font-size: 0.92rem;
  font-weight: 600;

  color: #334155;

  margin-bottom: -0.5rem;
}

/* =========================
   INPUT & TEXTAREA
========================= */

form input,
form textarea {
  width: 100%;

  padding: 1rem 1.1rem;

  border-radius: 16px;

  border: 1px solid rgba(15, 94, 92, 0.12);

  background: rgba(255, 255, 255, 0.8);

  font-size: 0.92rem;

  color: #1e293b;

  outline: none;

  transition: all 0.3s ease;

  box-sizing: border-box;
}

form textarea {
  min-height: 140px;

  resize: vertical;

  line-height: 1.7;
}

/* FOCUS */
form input:focus,
form textarea:focus {
  border-color: #0f5e5c;

  box-shadow: 0 0 0 4px rgba(15, 94, 92, 0.1);

  background: #fff;
}

/* =========================
   BUTTON
========================= */

form button {
  margin-top: 0.5rem;

  padding: 1rem;

  border: none;

  border-radius: 18px;

  background: linear-gradient(135deg, #0f5e5c, #1b8a84);

  color: white;

  font-size: 0.95rem;
  font-weight: 700;

  cursor: pointer;

  box-shadow: 0 10px 25px rgba(15, 94, 92, 0.22);

  transition: all 0.3s ease;
}

form button:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 35px rgba(15, 94, 92, 0.3);
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {
  .container {
    margin-left: 0;

    width: 100%;

    padding: 85px 20px 25px;
  }

  .card {
    padding: 1.7rem;

    border-radius: 24px;
  }

  .card h2 {
    font-size: 1.7rem;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 450px) {
  .container {
    padding: 80px 16px 20px;
  }

  .card {
    padding: 1.4rem;

    border-radius: 22px;
  }

  .card h2 {
    font-size: 1.45rem;
  }

  form input,
  form textarea {
    padding: 0.95rem;

    border-radius: 14px;

    font-size: 0.85rem;
  }

  form button {
    width: 100%;

    border-radius: 14px;
  }
}

/* =========================
   PAGE WRAPPER
========================= */

.container {
  margin-left: 245px;

  width: calc(100% - 245px);

  min-height: 100vh;

  padding: 35px;

  box-sizing: border-box;

  background:
    radial-gradient(
      circle at top left,
      rgba(15, 94, 92, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(27, 138, 132, 0.08),
      transparent 30%
    ),
    #f4f7f6;

  transition: all 0.3s ease;
}

/* =========================
   TITLE
========================= */

.container h2 {
  font-size: 2rem;
  font-weight: 800;

  color: #071f1f;

  margin-bottom: 1.8rem;

  letter-spacing: -0.5px;
}

/* =========================
   CARD
========================= */

.card {
  width: 100%;
  max-width: 850px;

  padding: 2rem;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.45);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

/* =========================
   FORM
========================= */

.card form {
  display: flex;
  flex-direction: column;

  gap: 1.2rem;
}

/* =========================
   LABEL
========================= */

.card label {
  font-size: 0.92rem;
  font-weight: 600;

  color: #334155;

  margin-bottom: -0.5rem;
}

/* =========================
   INPUT & TEXTAREA
========================= */

.card input[type="text"],
.card textarea,
.card input[type="file"] {
  width: 100%;

  padding: 1rem 1.1rem;

  border-radius: 16px;

  border: 1px solid rgba(15, 94, 92, 0.12);

  background: rgba(255, 255, 255, 0.85);

  font-size: 0.92rem;

  color: #1e293b;

  outline: none;

  transition: all 0.3s ease;

  box-sizing: border-box;
}

/* TEXTAREA */
.card textarea {
  min-height: 180px;

  resize: vertical;

  line-height: 1.8;
}

/* FOCUS */
.card input[type="text"]:focus,
.card textarea:focus,
.card input[type="file"]:focus {
  border-color: #0f5e5c;

  box-shadow: 0 0 0 4px rgba(15, 94, 92, 0.1);

  background: white;
}

/* =========================
   IMAGE PREVIEW
========================= */

.card img {
  width: 160px;

  border-radius: 18px;

  object-fit: cover;

  border: 4px solid rgba(15, 94, 92, 0.08);

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* =========================
   FILE INPUT
========================= */

.card input[type="file"] {
  padding: 0.85rem;

  cursor: pointer;
}

/* =========================
   BUTTON
========================= */

.card button {
  margin-top: 0.5rem;

  padding: 1rem;

  border: none;

  border-radius: 18px;

  background: linear-gradient(135deg, #0f5e5c, #1b8a84);

  color: white;

  font-size: 0.95rem;
  font-weight: 700;

  cursor: pointer;

  box-shadow: 0 10px 25px rgba(15, 94, 92, 0.22);

  transition: all 0.3s ease;
}

.card button:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 35px rgba(15, 94, 92, 0.3);
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {
  .container {
    margin-left: 0;

    width: 100%;

    padding: 85px 20px 25px;
  }

  .container h2 {
    font-size: 1.7rem;
  }

  .card {
    padding: 1.7rem;

    border-radius: 24px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 450px) {
  .container {
    padding: 80px 16px 20px;
  }

  .container h2 {
    font-size: 1.45rem;
  }

  .card {
    padding: 1.4rem;

    border-radius: 22px;
  }

  .card input[type="text"],
  .card textarea,
  .card input[type="file"] {
    padding: 0.95rem;

    border-radius: 14px;

    font-size: 0.85rem;
  }

  .card textarea {
    min-height: 150px;
  }

  .card img {
    width: 120px;

    border-radius: 14px;
  }

  .card button {
    width: 100%;

    border-radius: 14px;
  }
}

/* =========================
   FORM CONTAINER
========================= */

.form-container {
  margin-left: 245px;

  width: calc(100% - 245px);

  min-height: 100vh;

  padding: 35px;

  box-sizing: border-box;

  display: flex;
  justify-content: center;
  align-items: flex-start;

  background:
    radial-gradient(
      circle at top left,
      rgba(15, 94, 92, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(27, 138, 132, 0.08),
      transparent 30%
    ),
    #f4f7f6;

  transition: all 0.3s ease;
}

/* =========================
   CARD
========================= */

.card {
  width: 100%;
  max-width: 850px;

  padding: 2rem;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.45);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

/* =========================
   TITLE
========================= */

.card h2 {
  font-size: 2rem;
  font-weight: 800;

  color: #071f1f;

  margin-bottom: 2rem;

  letter-spacing: -0.5px;
}

/* =========================
   FORM
========================= */

.card form {
  display: flex;
  flex-direction: column;

  gap: 1.2rem;
}

/* =========================
   LABEL
========================= */

.card label {
  font-size: 0.92rem;
  font-weight: 600;

  color: #334155;

  margin-bottom: -0.4rem;
}

/* =========================
   INPUT & TEXTAREA
========================= */

.card input[type="text"],
.card input[type="file"],
.card textarea {
  width: 100%;

  padding: 1rem 1.1rem;

  border-radius: 16px;

  border: 1px solid rgba(15, 94, 92, 0.12);

  background: rgba(255, 255, 255, 0.85);

  font-size: 0.92rem;

  color: #1e293b;

  outline: none;

  transition: all 0.3s ease;

  box-sizing: border-box;
}

/* TEXTAREA */
.card textarea {
  min-height: 220px;

  resize: vertical;

  line-height: 1.8;
}

/* FOCUS */
.card input[type="text"]:focus,
.card input[type="file"]:focus,
.card textarea:focus {
  border-color: #0f5e5c;

  background: white;

  box-shadow: 0 0 0 4px rgba(15, 94, 92, 0.1);
}

/* =========================
   FILE INPUT
========================= */

.card input[type="file"] {
  cursor: pointer;

  padding: 0.85rem;
}

/* =========================
   IMAGE PREVIEW
========================= */

.card p {
  font-size: 0.88rem;

  color: #64748b;

  line-height: 1.7;
}

.card img {
  margin-top: 0.8rem;

  width: 160px;

  border-radius: 18px;

  object-fit: cover;

  border: 4px solid rgba(15, 94, 92, 0.08);

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* =========================
   BUTTON
========================= */

.card button {
  margin-top: 0.7rem;

  padding: 1rem;

  border: none;

  border-radius: 18px;

  background: linear-gradient(135deg, #0f5e5c, #1b8a84);

  color: white;

  font-size: 0.95rem;
  font-weight: 700;

  cursor: pointer;

  box-shadow: 0 10px 25px rgba(15, 94, 92, 0.22);

  transition: all 0.3s ease;
}

.card button:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 35px rgba(15, 94, 92, 0.3);
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {
  .form-container {
    margin-left: 0;

    width: 100%;

    padding: 85px 20px 25px;
  }

  .card {
    padding: 1.7rem;

    border-radius: 24px;
  }

  .card h2 {
    font-size: 1.7rem;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 450px) {
  .form-container {
    padding: 80px 16px 20px;
  }

  .card {
    padding: 1.4rem;

    border-radius: 22px;
  }

  .card h2 {
    font-size: 1.45rem;
  }

  .card input[type="text"],
  .card input[type="file"],
  .card textarea {
    padding: 0.95rem;

    border-radius: 14px;

    font-size: 0.85rem;
  }

  .card textarea {
    min-height: 180px;
  }

  .card img {
    width: 120px;

    border-radius: 14px;
  }

  .card button {
    width: 100%;

    border-radius: 14px;
  }
}

/* =========================
   CONTAINER
========================= */

.container {
  margin-left: 245px;

  width: calc(100% - 245px);

  min-height: 100vh;

  padding: 35px;

  box-sizing: border-box;

  display: flex;
  justify-content: center;
  align-items: flex-start;

  background:
    radial-gradient(
      circle at top left,
      rgba(15, 94, 92, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(27, 138, 132, 0.08),
      transparent 30%
    ),
    #f4f7f6;

  transition: all 0.3s ease;
}

/* =========================
   CARD
========================= */

.card {
  width: 100%;
  max-width: 820px;

  padding: 2rem;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.45);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

/* =========================
   TITLE
========================= */

.card h2 {
  font-size: 2rem;
  font-weight: 800;

  color: #071f1f;

  margin-bottom: 2rem;

  letter-spacing: -0.5px;
}

/* =========================
   FORM
========================= */

.card form {
  display: flex;
  flex-direction: column;

  gap: 1.2rem;
}

/* =========================
   LABEL
========================= */

.card label {
  font-size: 0.92rem;
  font-weight: 600;

  color: #334155;

  margin-bottom: -0.5rem;
}

/* =========================
   INPUT & TEXTAREA
========================= */

.card input[type="date"],
.card input[type="file"],
.card textarea {
  width: 100%;

  padding: 1rem 1.1rem;

  border-radius: 16px;

  border: 1px solid rgba(15, 94, 92, 0.12);

  background: rgba(255, 255, 255, 0.85);

  font-size: 0.92rem;

  color: #1e293b;

  outline: none;

  transition: all 0.3s ease;

  box-sizing: border-box;
}

/* TEXTAREA */
.card textarea {
  min-height: 180px;

  resize: vertical;

  line-height: 1.8;
}

/* FOCUS */
.card input[type="date"]:focus,
.card input[type="file"]:focus,
.card textarea:focus {
  border-color: #0f5e5c;

  background: white;

  box-shadow: 0 0 0 4px rgba(15, 94, 92, 0.1);
}

/* =========================
   FILE INPUT
========================= */

.card input[type="file"] {
  cursor: pointer;

  padding: 0.85rem;
}

/* =========================
   IMAGE PREVIEW
========================= */

.preview {
  width: 220px;

  border-radius: 22px;

  object-fit: cover;

  border: 4px solid rgba(15, 94, 92, 0.08);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  transition: all 0.3s ease;
}

.preview:hover {
  transform: scale(1.03);
}

/* =========================
   BUTTON
========================= */

.card button {
  margin-top: 0.7rem;

  padding: 1rem;

  border: none;

  border-radius: 18px;

  background: linear-gradient(135deg, #0f5e5c, #1b8a84);

  color: white;

  font-size: 0.95rem;
  font-weight: 700;

  cursor: pointer;

  box-shadow: 0 10px 25px rgba(15, 94, 92, 0.22);

  transition: all 0.3s ease;
}

.card button:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 35px rgba(15, 94, 92, 0.3);
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {
  .container {
    margin-left: 0;

    width: 100%;

    padding: 85px 20px 25px;
  }

  .card {
    padding: 1.7rem;

    border-radius: 24px;
  }

  .card h2 {
    font-size: 1.7rem;
  }

  .preview {
    width: 180px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 450px) {
  .container {
    padding: 80px 16px 20px;
  }

  .card {
    padding: 1.4rem;

    border-radius: 22px;
  }

  .card h2 {
    font-size: 1.45rem;
  }

  .card input[type="date"],
  .card input[type="file"],
  .card textarea {
    padding: 0.95rem;

    border-radius: 14px;

    font-size: 0.85rem;
  }

  .card textarea {
    min-height: 150px;
  }

  .preview {
    width: 100%;

    border-radius: 18px;
  }

  .card button {
    width: 100%;

    border-radius: 14px;
  }
}

/* =========================
   CONTAINER
========================= */

.container {
  margin-left: 245px;

  width: calc(100% - 245px);

  min-height: 100vh;

  padding: 35px;

  box-sizing: border-box;

  background:
    radial-gradient(
      circle at top left,
      rgba(15, 94, 92, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(27, 138, 132, 0.08),
      transparent 30%
    ),
    #f4f7f6;

  transition: all 0.3s ease;
}

/* =========================
   TITLE
========================= */

.container h2 {
  font-size: 2rem;
  font-weight: 800;

  color: #071f1f;

  margin-bottom: 2rem;

  letter-spacing: -0.5px;
}

/* =========================
   FORM
========================= */

.container form {
  width: 100%;
  max-width: 850px;

  padding: 2rem;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.45);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.45);

  display: flex;
  flex-direction: column;

  gap: 1.2rem;
}

/* =========================
   LABEL
========================= */

.container label {
  font-size: 0.92rem;
  font-weight: 600;

  color: #334155;

  margin-bottom: -0.4rem;
}

/* =========================
   INPUT & TEXTAREA
========================= */

.container input[type="text"],
.container input[type="file"],
.container textarea {
  width: 100%;

  padding: 1rem 1.1rem;

  border-radius: 16px;

  border: 1px solid rgba(15, 94, 92, 0.12);

  background: rgba(255, 255, 255, 0.85);

  font-size: 0.92rem;

  color: #1e293b;

  outline: none;

  transition: all 0.3s ease;

  box-sizing: border-box;
}

/* TEXTAREA */
.container textarea {
  min-height: 180px;

  resize: vertical;

  line-height: 1.8;
}

/* FOCUS */
.container input[type="text"]:focus,
.container input[type="file"]:focus,
.container textarea:focus {
  border-color: #0f5e5c;

  background: white;

  box-shadow: 0 0 0 4px rgba(15, 94, 92, 0.1);
}

/* =========================
   FILE INPUT
========================= */

.container input[type="file"] {
  padding: 0.85rem;

  cursor: pointer;
}

/* =========================
   IMAGE PREVIEW
========================= */

.container img {
  margin-top: 0.5rem;

  width: 220px;

  border-radius: 22px;

  object-fit: cover;

  border: 4px solid rgba(15, 94, 92, 0.08);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  transition: all 0.3s ease;
}

.container img:hover {
  transform: scale(1.03);
}

/* =========================
   BUTTON
========================= */

.container button {
  margin-top: 0.8rem;

  padding: 1rem;

  border: none;

  border-radius: 18px;

  background: linear-gradient(135deg, #0f5e5c, #1b8a84);

  color: white;

  font-size: 0.95rem;
  font-weight: 700;

  cursor: pointer;

  box-shadow: 0 10px 25px rgba(15, 94, 92, 0.22);

  transition: all 0.3s ease;
}

.container button:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 35px rgba(15, 94, 92, 0.3);
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {
  .container {
    margin-left: 0;

    width: 100%;

    padding: 85px 20px 25px;
  }

  .container h2 {
    font-size: 1.7rem;
  }

  .container form {
    padding: 1.7rem;

    border-radius: 24px;
  }

  .container img {
    width: 180px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 450px) {
  .container {
    padding: 80px 16px 20px;
  }

  .container h2 {
    font-size: 1.45rem;
  }

  .container form {
    padding: 1.4rem;

    border-radius: 22px;
  }

  .container input[type="text"],
  .container input[type="file"],
  .container textarea {
    padding: 0.95rem;

    border-radius: 14px;

    font-size: 0.85rem;
  }

  .container textarea {
    min-height: 150px;
  }

  .container img {
    width: 100%;

    border-radius: 18px;
  }

  .container button {
    width: 100%;

    border-radius: 14px;
  }
}

/* =========================
   FORM CONTAINER
========================= */

.form-container {
  margin-left: 245px;

  width: calc(100% - 245px);

  min-height: 100vh;

  padding: 35px;

  box-sizing: border-box;

  display: flex;
  justify-content: center;
  align-items: flex-start;

  background:
    radial-gradient(
      circle at top left,
      rgba(15, 94, 92, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(27, 138, 132, 0.08),
      transparent 30%
    ),
    #f4f7f6;

  transition: all 0.3s ease;
}

/* =========================
   CARD
========================= */

.card {
  width: 100%;
  max-width: 750px;

  padding: 2rem;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.45);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

/* =========================
   TITLE
========================= */

.card h2 {
  font-size: 2rem;
  font-weight: 800;

  color: #071f1f;

  margin-bottom: 2rem;

  letter-spacing: -0.5px;
}

/* =========================
   FORM
========================= */

.card form {
  display: flex;
  flex-direction: column;

  gap: 1.2rem;
}

/* =========================
   LABEL
========================= */

.card label {
  font-size: 0.92rem;
  font-weight: 600;

  color: #334155;

  margin-bottom: -0.4rem;
}

/* =========================
   INPUT & SELECT
========================= */

.card input,
.card select {
  width: 100%;

  padding: 1rem 1.1rem;

  border-radius: 16px;

  border: 1px solid rgba(15, 94, 92, 0.12);

  background: rgba(255, 255, 255, 0.85);

  font-size: 0.92rem;

  color: #1e293b;

  outline: none;

  transition: all 0.3s ease;

  box-sizing: border-box;
}

/* SELECT */
.card select {
  cursor: pointer;

  appearance: none;

  background-image:
    linear-gradient(45deg, transparent 50%, #0f5e5c 50%),
    linear-gradient(135deg, #0f5e5c 50%, transparent 50%);

  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);

  background-size: 6px 6px;

  background-repeat: no-repeat;
}

/* FOCUS */
.card input:focus,
.card select:focus {
  border-color: #0f5e5c;

  background: white;

  box-shadow: 0 0 0 4px rgba(15, 94, 92, 0.1);
}

/* =========================
   BUTTON
========================= */

.card button {
  margin-top: 0.8rem;

  padding: 1rem;

  border: none;

  border-radius: 18px;

  background: linear-gradient(135deg, #0f5e5c, #1b8a84);

  color: white;

  font-size: 0.95rem;
  font-weight: 700;

  cursor: pointer;

  box-shadow: 0 10px 25px rgba(15, 94, 92, 0.22);

  transition: all 0.3s ease;
}

.card button:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 35px rgba(15, 94, 92, 0.3);
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {
  .form-container {
    margin-left: 0;

    width: 100%;

    padding: 85px 20px 25px;
  }

  .card {
    padding: 1.7rem;

    border-radius: 24px;
  }

  .card h2 {
    font-size: 1.7rem;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 450px) {
  .form-container {
    padding: 80px 16px 20px;
  }

  .card {
    padding: 1.4rem;

    border-radius: 22px;
  }

  .card h2 {
    font-size: 1.45rem;
  }

  .card input,
  .card select {
    padding: 0.95rem;

    border-radius: 14px;

    font-size: 0.85rem;
  }

  .card button {
    width: 100%;

    border-radius: 14px;
  }
}

/* =========================
   CONTAINER
========================= */

.container {
  margin-left: 245px;

  width: calc(100% - 245px);

  min-height: 100vh;

  padding: 35px;

  box-sizing: border-box;

  background:
    radial-gradient(
      circle at top left,
      rgba(15, 94, 92, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(27, 138, 132, 0.08),
      transparent 30%
    ),
    #f4f7f6;

  transition: all 0.3s ease;
}

/* =========================
   TITLE
========================= */

.container h2 {
  font-size: 2rem;
  font-weight: 800;

  color: #071f1f;

  margin-bottom: 2rem;

  letter-spacing: -0.5px;
}

/* =========================
   FORM
========================= */

.container form {
  width: 100%;
  max-width: 650px;

  padding: 2rem;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.45);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.45);

  display: flex;
  flex-direction: column;

  gap: 1.2rem;
}

/* =========================
   LABEL
========================= */

.container label {
  font-size: 0.92rem;
  font-weight: 600;

  color: #334155;

  margin-bottom: -0.4rem;
}

/* =========================
   INPUT
========================= */

.container input[type="text"],
.container input[type="time"] {
  width: 100%;

  padding: 1rem 1.1rem;

  border-radius: 16px;

  border: 1px solid rgba(15, 94, 92, 0.12);

  background: rgba(255, 255, 255, 0.85);

  font-size: 0.92rem;

  color: #1e293b;

  outline: none;

  transition: all 0.3s ease;

  box-sizing: border-box;
}

/* FOCUS */
.container input[type="text"]:focus,
.container input[type="time"]:focus {
  border-color: #0f5e5c;

  background: white;

  box-shadow: 0 0 0 4px rgba(15, 94, 92, 0.1);
}

/* =========================
   TIME INPUT SPECIAL
========================= */

.container input[type="time"] {
  cursor: pointer;
}

/* =========================
   BUTTON
========================= */

.container button {
  margin-top: 0.7rem;

  padding: 1rem;

  border: none;

  border-radius: 18px;

  background: linear-gradient(135deg, #0f5e5c, #1b8a84);

  color: white;

  font-size: 0.95rem;
  font-weight: 700;

  cursor: pointer;

  box-shadow: 0 10px 25px rgba(15, 94, 92, 0.22);

  transition: all 0.3s ease;
}

.container button:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 35px rgba(15, 94, 92, 0.3);
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {
  .container {
    margin-left: 0;

    width: 100%;

    padding: 85px 20px 25px;
  }

  .container h2 {
    font-size: 1.7rem;
  }

  .container form {
    padding: 1.7rem;

    border-radius: 24px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 450px) {
  .container {
    padding: 80px 16px 20px;
  }

  .container h2 {
    font-size: 1.45rem;
  }

  .container form {
    padding: 1.4rem;

    border-radius: 22px;
  }

  .container input[type="text"],
  .container input[type="time"] {
    padding: 0.95rem;

    border-radius: 14px;

    font-size: 0.85rem;
  }

  .container button {
    width: 100%;

    border-radius: 14px;
  }
}

/* =========================
   CONTAINER
========================= */

.container {
  margin-left: 245px;

  width: calc(100% - 245px);

  min-height: 100vh;

  padding: 35px;

  box-sizing: border-box;

  background:
    radial-gradient(
      circle at top left,
      rgba(15, 94, 92, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(27, 138, 132, 0.08),
      transparent 30%
    ),
    #f4f7f6;

  transition: all 0.3s ease;
}

/* =========================
   TITLE
========================= */

.container h1 {
  font-size: 2rem;
  font-weight: 800;

  color: #071f1f;

  margin-bottom: 1.5rem;

  letter-spacing: -0.5px;
}

/* =========================
   ALERT
========================= */

.alert {
  width: 100%;
  max-width: 850px;

  padding: 1rem 1.2rem;

  border-radius: 16px;

  margin-bottom: 1.5rem;

  font-size: 0.92rem;
  font-weight: 600;

  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.alert.sukses {
  background: rgba(34, 197, 94, 0.12);

  color: #166534;

  border: 1px solid rgba(34, 197, 94, 0.18);
}

/* =========================
   CARD
========================= */

.card {
  width: 100%;
  max-width: 850px;

  padding: 2rem;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.45);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

/* =========================
   FORM
========================= */

.card form {
  display: flex;
  flex-direction: column;

  gap: 1.2rem;
}

/* =========================
   LABEL
========================= */

.card label {
  font-size: 0.92rem;
  font-weight: 600;

  color: #334155;

  margin-bottom: -0.4rem;
}

/* =========================
   INPUT & TEXTAREA
========================= */

.card input[type="text"],
.card input[type="file"],
.card textarea {
  width: 100%;

  padding: 1rem 1.1rem;

  border-radius: 16px;

  border: 1px solid rgba(15, 94, 92, 0.12);

  background: rgba(255, 255, 255, 0.85);

  font-size: 0.92rem;

  color: #1e293b;

  outline: none;

  transition: all 0.3s ease;

  box-sizing: border-box;
}

/* TEXTAREA */
.card textarea {
  min-height: 220px;

  resize: vertical;

  line-height: 1.8;
}

/* FILE */
.card input[type="file"] {
  cursor: pointer;

  padding: 0.85rem;
}

/* FOCUS */
.card input[type="text"]:focus,
.card input[type="file"]:focus,
.card textarea:focus {
  border-color: #0f5e5c;

  background: white;

  box-shadow: 0 0 0 4px rgba(15, 94, 92, 0.1);
}

/* =========================
   IMAGE PREVIEW
========================= */

.card img {
  width: 220px;

  border-radius: 22px;

  object-fit: cover;

  border: 4px solid rgba(15, 94, 92, 0.08);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  transition: all 0.3s ease;
}

.card img:hover {
  transform: scale(1.03);
}

/* =========================
   BUTTON
========================= */

.btn {
  margin-top: 0.5rem;

  padding: 1rem;

  border: none;

  border-radius: 18px;

  background: linear-gradient(135deg, #0f5e5c, #1b8a84);

  color: white;

  font-size: 0.95rem;
  font-weight: 700;

  cursor: pointer;

  box-shadow: 0 10px 25px rgba(15, 94, 92, 0.22);

  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 35px rgba(15, 94, 92, 0.3);
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {
  .container {
    margin-left: 0;

    width: 100%;

    padding: 85px 20px 25px;
  }

  .container h1 {
    font-size: 1.7rem;
  }

  .card {
    padding: 1.7rem;

    border-radius: 24px;
  }

  .card img {
    width: 180px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 450px) {
  .container {
    padding: 80px 16px 20px;
  }

  .container h1 {
    font-size: 1.45rem;
  }

  .card {
    padding: 1.4rem;

    border-radius: 22px;
  }

  .card input[type="text"],
  .card input[type="file"],
  .card textarea {
    padding: 0.95rem;

    border-radius: 14px;

    font-size: 0.85rem;
  }

  .card textarea {
    min-height: 170px;
  }

  .card img {
    width: 100%;

    border-radius: 18px;
  }

  .btn {
    width: 100%;

    border-radius: 14px;
  }

  .alert {
    font-size: 0.82rem;

    border-radius: 14px;
  }
}

/* =========================
   CONTAINER
========================= */

.container {
  margin-left: 245px;

  width: calc(100% - 245px);

  min-height: 100vh;

  padding: 35px;

  box-sizing: border-box;

  background:
    radial-gradient(
      circle at top left,
      rgba(15, 94, 92, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(27, 138, 132, 0.08),
      transparent 30%
    ),
    #f4f7f6;

  transition: all 0.3s ease;
}

/* =========================
   CARD
========================= */

.card {
  width: 100%;
  max-width: 850px;

  padding: 2rem;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.45);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

/* =========================
   TITLE
========================= */

.card h2 {
  font-size: 2rem;
  font-weight: 800;

  color: #071f1f;

  margin-bottom: 2rem;

  letter-spacing: -0.5px;
}

/* =========================
   FORM
========================= */

.card form {
  display: flex;
  flex-direction: column;

  gap: 1.3rem;
}

/* =========================
   FORM ROW
========================= */

.form-row {
  display: flex;
  flex-direction: column;

  gap: 0.7rem;
}

/* =========================
   LABEL
========================= */

.form-row label {
  font-size: 0.92rem;
  font-weight: 600;

  color: #334155;
}

/* =========================
   INPUT, SELECT, TEXTAREA
========================= */

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;

  padding: 1rem 1.1rem;

  border-radius: 16px;

  border: 1px solid rgba(15, 94, 92, 0.12);

  background: rgba(255, 255, 255, 0.88);

  font-size: 0.92rem;

  color: #1e293b;

  outline: none;

  transition: all 0.3s ease;

  box-sizing: border-box;
}

/* TEXTAREA */
.form-row textarea {
  min-height: 180px;

  resize: vertical;

  line-height: 1.8;
}

/* SELECT */
.form-row select {
  cursor: pointer;

  appearance: none;

  background-image:
    linear-gradient(45deg, transparent 50%, #0f5e5c 50%),
    linear-gradient(135deg, #0f5e5c 50%, transparent 50%);

  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);

  background-size: 6px 6px;

  background-repeat: no-repeat;
}

/* FILE INPUT */
.form-row input[type="file"] {
  cursor: pointer;

  padding: 0.85rem;
}

/* FOCUS */
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: #0f5e5c;

  background: white;

  box-shadow: 0 0 0 4px rgba(15, 94, 92, 0.1);
}

/* =========================
   IMAGE PREVIEW
========================= */

.form-row img {
  width: 220px;

  border-radius: 22px;

  object-fit: cover;

  border: 4px solid rgba(15, 94, 92, 0.08);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  transition: all 0.3s ease;
}

.form-row img:hover {
  transform: scale(1.03);
}

/* =========================
   BUTTON
========================= */

.card button {
  margin-top: 0.5rem;

  padding: 1rem;

  border: none;

  border-radius: 18px;

  background: linear-gradient(135deg, #0f5e5c, #1b8a84);

  color: white;

  font-size: 0.95rem;
  font-weight: 700;

  cursor: pointer;

  box-shadow: 0 10px 25px rgba(15, 94, 92, 0.22);

  transition: all 0.3s ease;
}

.card button:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 35px rgba(15, 94, 92, 0.3);
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {
  .container {
    margin-left: 0;

    width: 100%;

    padding: 85px 20px 25px;
  }

  .card {
    padding: 1.7rem;

    border-radius: 24px;
  }

  .card h2 {
    font-size: 1.7rem;
  }

  .form-row img {
    width: 180px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 450px) {
  .container {
    padding: 80px 16px 20px;
  }

  .card {
    padding: 1.4rem;

    border-radius: 22px;
  }

  .card h2 {
    font-size: 1.45rem;
  }

  .form-row input,
  .form-row select,
  .form-row textarea {
    padding: 0.95rem;

    border-radius: 14px;

    font-size: 0.85rem;
  }

  .form-row textarea {
    min-height: 150px;
  }

  .form-row img {
    width: 100%;

    border-radius: 18px;
  }

  .card button {
    width: 100%;

    border-radius: 14px;
  }
}

/* =========================
   FORM CONTAINER
========================= */

.form-container {
  margin-left: 245px;

  width: calc(100% - 245px);

  min-height: 100vh;

  padding: 35px;

  box-sizing: border-box;

  display: flex;
  justify-content: center;
  align-items: flex-start;

  background:
    radial-gradient(
      circle at top left,
      rgba(15, 94, 92, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(27, 138, 132, 0.08),
      transparent 30%
    ),
    #f4f7f6;

  transition: all 0.3s ease;
}

/* =========================
   CARD
========================= */

.card {
  width: 100%;
  max-width: 760px;

  padding: 2rem;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.45);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

/* =========================
   TITLE
========================= */

.card h2 {
  font-size: 2rem;
  font-weight: 800;

  color: #071f1f;

  margin-bottom: 2rem;

  letter-spacing: -0.5px;
}

/* =========================
   FORM
========================= */

.card form {
  display: flex;
  flex-direction: column;

  gap: 1.2rem;
}

/* =========================
   LABEL
========================= */

.card label {
  font-size: 0.92rem;
  font-weight: 600;

  color: #334155;

  margin-bottom: -0.4rem;
}

/* =========================
   INPUT & TEXTAREA
========================= */

.card input,
.card textarea {
  width: 100%;

  padding: 1rem 1.1rem;

  border-radius: 16px;

  border: 1px solid rgba(15, 94, 92, 0.12);

  background: rgba(255, 255, 255, 0.88);

  font-size: 0.92rem;

  color: #1e293b;

  outline: none;

  transition: all 0.3s ease;

  box-sizing: border-box;
}

/* TEXTAREA */
.card textarea {
  min-height: 180px;

  resize: vertical;

  line-height: 1.8;
}

/* FOCUS */
.card input:focus,
.card textarea:focus {
  border-color: #0f5e5c;

  background: white;

  box-shadow: 0 0 0 4px rgba(15, 94, 92, 0.1);
}

/* =========================
   ICON INPUT SPECIAL
========================= */

.card input[name="icon"] {
  font-family: monospace;

  letter-spacing: 0.3px;

  background: linear-gradient(
    to right,
    rgba(15, 94, 92, 0.04),
    rgba(255, 255, 255, 0.9)
  );
}

/* =========================
   BUTTON
========================= */

.card button {
  margin-top: 0.5rem;

  padding: 1rem;

  border: none;

  border-radius: 18px;

  background: linear-gradient(135deg, #0f5e5c, #1b8a84);

  color: white;

  font-size: 0.95rem;
  font-weight: 700;

  cursor: pointer;

  box-shadow: 0 10px 25px rgba(15, 94, 92, 0.22);

  transition: all 0.3s ease;
}

.card button:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 35px rgba(15, 94, 92, 0.3);
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {
  .form-container {
    margin-left: 0;

    width: 100%;

    padding: 85px 20px 25px;
  }

  .card {
    padding: 1.7rem;

    border-radius: 24px;
  }

  .card h2 {
    font-size: 1.7rem;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 450px) {
  .form-container {
    padding: 80px 16px 20px;
  }

  .card {
    padding: 1.4rem;

    border-radius: 22px;
  }

  .card h2 {
    font-size: 1.45rem;
  }

  .card input,
  .card textarea {
    padding: 0.95rem;

    border-radius: 14px;

    font-size: 0.85rem;
  }

  .card textarea {
    min-height: 150px;
  }

  .card button {
    width: 100%;

    border-radius: 14px;
  }
}

/* =========================
   FORM CONTAINER
========================= */

.form-container {
  margin-left: 245px;

  width: calc(100% - 245px);

  min-height: 100vh;

  padding: 35px;

  box-sizing: border-box;

  display: flex;
  justify-content: center;
  align-items: flex-start;

  background:
    radial-gradient(
      circle at top left,
      rgba(15, 94, 92, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(27, 138, 132, 0.08),
      transparent 30%
    ),
    #f4f7f6;

  transition: all 0.3s ease;
}

/* =========================
   CARD
========================= */

.card {
  width: 100%;
  max-width: 720px;

  padding: 2rem;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.45);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

/* =========================
   TITLE
========================= */

.card h2 {
  font-size: 2rem;
  font-weight: 800;

  color: #071f1f;

  margin-bottom: 2rem;

  letter-spacing: -0.5px;
}

/* =========================
   FORM
========================= */

.card form {
  display: flex;
  flex-direction: column;

  gap: 1.2rem;
}

/* =========================
   LABEL
========================= */

.card label {
  font-size: 0.92rem;
  font-weight: 600;

  color: #334155;

  margin-bottom: -0.4rem;
}

/* =========================
   INPUT & SELECT
========================= */

.card input,
.card select {
  width: 100%;

  padding: 1rem 1.1rem;

  border-radius: 16px;

  border: 1px solid rgba(15, 94, 92, 0.12);

  background: rgba(255, 255, 255, 0.88);

  font-size: 0.92rem;

  color: #1e293b;

  outline: none;

  transition: all 0.3s ease;

  box-sizing: border-box;
}

/* SELECT STYLE */
.card select {
  cursor: pointer;

  appearance: none;

  background-image:
    linear-gradient(45deg, transparent 50%, #0f5e5c 50%),
    linear-gradient(135deg, #0f5e5c 50%, transparent 50%);

  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);

  background-size: 6px 6px;

  background-repeat: no-repeat;
}

/* FOCUS */
.card input:focus,
.card select:focus {
  border-color: #0f5e5c;

  background: white;

  box-shadow: 0 0 0 4px rgba(15, 94, 92, 0.1);
}

/* =========================
   BUTTON
========================= */

.card button {
  margin-top: 0.6rem;

  padding: 1rem;

  border: none;

  border-radius: 18px;

  background: linear-gradient(135deg, #0f5e5c, #1b8a84);

  color: white;

  font-size: 0.95rem;
  font-weight: 700;

  cursor: pointer;

  box-shadow: 0 10px 25px rgba(15, 94, 92, 0.22);

  transition: all 0.3s ease;
}

.card button:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 35px rgba(15, 94, 92, 0.3);
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {
  .form-container {
    margin-left: 0;

    width: 100%;

    padding: 85px 20px 25px;
  }

  .card {
    padding: 1.7rem;

    border-radius: 24px;
  }

  .card h2 {
    font-size: 1.7rem;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 450px) {
  .form-container {
    padding: 80px 16px 20px;
  }

  .card {
    padding: 1.4rem;

    border-radius: 22px;
  }

  .card h2 {
    font-size: 1.45rem;
  }

  .card input,
  .card select {
    padding: 0.95rem;

    border-radius: 14px;

    font-size: 0.85rem;
  }

  .card button {
    width: 100%;

    border-radius: 14px;
  }
}

.main {
  width: 100% !important;
  background: #fff;
}

.form-container {
  background: #fff;
  /* margin: 0 5rem !important; */
  margin-left: 5rem;
}

.container {
  display: block;
  background: #fff;
}
