@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
.text-center {
  text-align: center;
}

nav .mobileMenu {
  display: none;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 100%;
  padding: 0 100px;
  height: 60px;
  font-family: "Poppins", sans-serif;
}

.nav-brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.nav-brand .nav-brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}
.nav-brand .nav-logo-img {
  height: 38px;
  width: 38px;
  object-fit: contain;
  border-radius: 3px;
}
.nav-brand .nav-brand-text {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-menu-center {
  display: flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-menu-center .nav-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 3px;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.nav-menu-center .nav-link:hover {
  color: #ffffff;
  background-color: #C562AF;
}
.nav-menu-center .nav-link.nav-link-active {
  color: #ffffff;
  border-bottom: 2px solid #ffffff;
}

/* ===== DESKTOP DROPDOWN (TENTANG) ===== */
.nav-menu-center .nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-menu-center .nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-menu-center .nav-dropdown-arrow {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.nav-menu-center .nav-dropdown:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
}
.nav-menu-center .nav-dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  overflow: hidden;
  z-index: 9999;
  animation: dropdownFadeIn 0.2s ease;
}
@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav-menu-center .nav-dropdown:hover .nav-dropdown-content {
  display: block;
}
.nav-menu-center .nav-dropdown-content .nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  color: #374151;
  text-decoration: none;
  font-size: 0.82rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: background 0.15s ease, color 0.15s ease;
  border-bottom: 1px solid #f3f4f6;
}
.nav-menu-center .nav-dropdown-content .nav-dropdown-item:last-child {
  border-bottom: none;
}
.nav-menu-center .nav-dropdown-content .nav-dropdown-item:hover,
.nav-menu-center .nav-dropdown-content .nav-dropdown-item.active {
  background: #fdf0fa;
  color: #B33791;
}
.nav-menu-center .nav-dropdown-content .nav-dropdown-item svg {
  flex-shrink: 0;
  color: #C562AF;
}

/* ===== MOBILE DROPDOWN (TENTANG) ===== */
.mobile-dropdown {
  width: 100%;
}
.mobile-dropdown-toggle {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 14px 0;
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-dropdown-toggle:hover,
.mobile-dropdown-toggle.active {
  color: #ffffff;
}
.mobile-dropdown-arrow {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.mobile-dropdown-arrow.rotated {
  transform: rotate(180deg);
}
.mobile-dropdown-content {
  display: none;
  flex-direction: column;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  margin: 4px 0 8px 0;
  overflow: hidden;
}
.mobile-dropdown-content.open {
  display: flex;
}
.mobile-sub-link {
  display: block;
  padding: 11px 20px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.82rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.15s ease, color 0.15s ease;
}
.mobile-sub-link:last-child {
  border-bottom: none;
}
.mobile-sub-link:hover,
.mobile-sub-link.active {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
}

.nav-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.nav-actions .nav-btn-login {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  border: 1.5px solid #FEC5F6;
  background: transparent;
  font-size: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 7px 18px;
  text-decoration: none;
  cursor: pointer;
  border-radius: 2px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.nav-actions .nav-btn-login:hover {
  background-color: #C562AF;
  border-color: #ffffff;
}

.nav-mobile-toggle {
  display: none;
}

nav {
  background: #B33791 !important;
  min-height: 60px !important;
}
nav .menu.desktop {
  display: none;
}
nav .mobileMenu {
  display: none;
}
nav #logo {
  display: none;
}

/* Container for the Sidebar Menu*/
content #sidebar-wraper {
  float: left;
  margin-top: 15px;
  width: 22%;
  min-height: 482px;
}
content {
  /* Container for the website main content view */
}
content #mainContent {
  width: 78%;
  min-height: 482px;
  float: Right;
}

.mobile-menu-overlay {
  display: none;
}

@media screen and (max-width: 800px) {
  .nav-menu-center {
    display: none;
  }
  .nav-actions {
    display: none;
  }
  .nav-mobile-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .nav-mobile-toggle .nav-mobile-btn {
    color: #ffffff;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 6px 14px;
    cursor: pointer;
    text-decoration: none;
    border-radius: 2px;
  }
  .nav-mobile-toggle .nav-mobile-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
  }
  .nav-inner {
    padding: 0 15px;
  }
  /* Container for the Sidebar Menu*/
  content #sidebar-wraper {
    position: fixed;
    top: 60px;
    margin-top: 0px;
    width: 100%;
    z-index: 100;
    min-height: 0px !important;
    height: 0px;
    background-color: #FFFFFF;
    overflow-y: hidden;
    transition-property: height;
    transition-duration: 0.5s;
  }
  content #sidebar-wraper .Sidebar {
    margin-left: 0px;
  }
  content #mainContent {
    width: 100%;
  }
  .mobile-menu-overlay {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #B33791;
    z-index: 99;
    overflow: hidden;
    transition: height 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
  }
  .mobile-menu-overlay.active {
    height: calc(100vh - 60px);
  }
  .mobile-menu-overlay .mobile-menu-content {
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    gap: 20px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
  }
  .mobile-menu-overlay.active .mobile-menu-content {
    opacity: 1;
    transform: translateY(0);
  }
  .mobile-menu-overlay .mobile-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.2s ease, transform 0.2s ease;
  }
  .mobile-menu-overlay .mobile-link:hover, .mobile-menu-overlay .mobile-link.active {
    color: #ffffff;
    transform: translateX(10px);
  }
  .mobile-menu-overlay .mobile-menu-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 10px 0;
  }
  .mobile-menu-overlay .mobile-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #B33791;
    background-color: #ffffff;
    padding: 14px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
  }
  .mobile-menu-overlay .mobile-btn.register-btn {
    background-color: transparent;
    color: #ffffff;
    border: 1.5px solid #ffffff;
    margin-top: -10px;
  }
  .mobile-menu-overlay .mobile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
}
.background-primare {
  background-color: #8102ca;
  color: #ffffff;
}

.notif {
  background-color: #ffffff;
  border-color: rgba(233, 30, 99, 0.8784313725);
  color: #E91E63;
  font-weight: 400;
  padding: 0.85rem 1.5rem;
  border-radius: 4px;
  position: relative;
  margin-bottom: 1rem;
  border: 1px solid #E91E63;
}

.notif-primary-strong {
  background-color: #ac12ff;
  border-color: #8257cf;
  color: #ffffff;
  border: 1px solid #9C27B0;
}

.text-center {
  text-align: center;
}

.hiden {
  display: none;
}

.purple {
  color: #FFFFFF;
  background-color: #a805a8;
  border-color: #8a048a;
}

.btnOk,
.btnCancel,
.btnSubmit,
.btnCircle {
  text-align: center;
  font-size: medium;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  -o-transition: border-color ease-in-out 0.15s, box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow 0.4 cubic-bezier(0.4, 0, 0.2, 1);
  transition: border-color ease-in-out 0.15s, box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btnOk:hover,
.btnCancel:hover,
.btnSubmit:hover,
.btnCircle:hover {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.32), 0 3px 6px rgba(0, 0, 0, 0.28);
}

.btnOk,
.btnCancel,
.btnSubmit {
  font-weight: bold;
  min-width: 90px;
  border-radius: 3px;
  padding-top: 8px;
  padding-bottom: 7px;
  margin-top: 5px;
}

.btnOk {
  color: #FFFFFF;
  background-color: #a805a8;
  border: 2px solid #8a048a;
}

.btnOk:hover {
  background-color: #8a048a;
  border-color: #6f036f;
}

.btnSubmit {
  color: #FFFFFF;
  background-color: #a805a8;
  border: 2px solid #8a048a;
}

.btnSubmit:hover {
  background-color: #8a048a;
  border-color: #6f036f;
}

.btnCancel {
  color: #FFFFFF;
  background-color: #f25f17;
  border: 2px solid #df4402;
}

.btnCancel:hover {
  background-color: #cf5316;
  border: 2px solid #bf410b;
}

.btnCircle {
  min-width: 18px;
  float: right;
  color: #b18cd2;
  border: 1px solid #d7abff;
  padding: 0px 3px 0px 3px;
}

.btnCircle:hover {
  background-color: #d1d6db;
  border: 1px solid #b18cd2;
}

.note-Field {
  cursor: default;
  text-decoration: none;
  -o-transition: all ease-in-out 2s;
  -webkit-transition: all ease-in-out 2s;
  transition: all ease-in-out 2s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow 0.4 cubic-bezier(0.4, 0, 0.2, 1);
  transition: border-color ease-in-out 0.15s, box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.note-Field {
  background-color: rgb(243, 252, 254);
  border-radius: 3px;
  margin: 0 0 20px;
  padding: 5px 5px 15px 15px;
  border-left: 5px solid #bd0fc1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.18);
}

.note-Field h1 {
  font-weight: bold;
  font-size: large;
  color: rgb(137, 13, 173);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.18);
}

.note-Field h2 {
  font-weight: normal;
  font-size: medium;
}

.modal .col-md-12,
.modal .col-md-8,
.modal .col-md-4 {
  padding-top: 5px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 5px;
}

.modal .col-md-12:last-child::after,
.modal .col-md-8:last-child::after,
.modal .col-md-4:last-child::after {
  content: "";
  visibility: hidden;
  display: inline-block;
  width: 100%;
  padding-bottom: 5px;
}

.modal .col-md-12,
.modal .col-md-8,
.modal .col-md-4 {
  padding-top: 5px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 5px;
}

/* Add Zoom Animation */
.animate {
  -webkit-animation: animatezoom 0.5s;
  animation: animatezoom 0.5s;
}

@-webkit-keyframes animatezoom {
  from {
    -webkit-transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
  }
}
@keyframes animatezoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
form .col-sm-1,
form .col-sm-2,
form .col-sm-3 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  width: 65%;
  display: inline-block;
}

/* Change styles for span and cancel button on extra small screens */
/* Container for header */
header {
  background-color: #8806D4;
  clear: both;
  float: none;
  color: rgb(255, 255, 255);
  padding-top: 170px;
  width: 100%;
}

/* headerform mainContent */
#stripHeader {
  border-bottom: 1px solid hsla(292, 35%, 58%, 0.5);
  padding: 10px;
  padding-left: 15px;
  color: hsla(292, 35%, 58%, 0.5);
  font-weight: bold;
}

/* field form mainContent */
content #mainContent #fieldContent {
  padding: 18px;
}

#fieldContent .field {
  border-radius: 3px;
  margin: 0 0 20px;
  background-color: #ffffff;
  padding: 15px 15px 15px 15px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.18);
}

#fieldContent .field h1 {
  padding-bottom: 8px;
  margin: 0;
  font-weight: bold;
  font-size: large;
  color: hsla(300, 94%, 33%, 0.62);
  border-bottom: 1.3px solid #f0e3fc;
  margin-bottom: 10px;
}

#fieldContent .field h1 > span {
  text-align: right;
  float: right;
}

#lokasi .modal-content .dot {
  float: left;
  margin-top: 7px;
}

#lokasi .modal-content label {
  position: relative;
  min-height: 23px;
  margin-top: 7px;
  padding-left: 15px;
  padding-right: 5px;
  float: left;
  width: auto;
}

#lokasi .modal-content span {
  color: #FF0004;
}

#lokasi .modal-content input {
  display: block;
  clear: right;
  width: 100%;
  height: 35px;
  margin-bottom: 5px;
  padding: 1px 10px 1px 13px;
  font-size: 14px;
  line-height: 1.42857;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

#lokasi .modal-content select {
  display: block;
  clear: right;
  width: 100%;
  height: 35px;
  padding-top: 6px;
  padding-right: 10px;
  padding-left: 10px;
  padding-bottom: 6px;
  font-size: 14px;
  line-height: 1.42857;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

#lokasi .modal-content select option {
  display: block;
  clear: right;
  width: 100%;
  height: 30px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* experiment */
.form .form-group {
  vertical-align: middle;
  padding: 0.6rem 0.2rem;
  clear: both;
}
.form .form-group:first-of-type {
  padding-top: 1rem;
}
.form .form-group:last-of-type {
  clear: both;
}
.form .form-group:after {
  clear: both;
}
.form .form-group .input-group {
  padding-left: 12px;
  padding-right: 12px;
}
.form .form-group .input-group:first-of-type {
  padding-left: 0px;
}
.form .form-group .input-group:last-of-type {
  padding-right: 0px;
}
.form .form-group label {
  position: relative;
  min-width: 12rem;
  min-height: 23px;
  padding-left: 0px;
  padding-right: 12px;
  float: left;
  width: auto;
}
.form .form-group label.inline-label {
  position: relative;
  top: 0.2rem;
}
.form .form-group label.top-label {
  position: relative;
  width: auto;
}
.form .form-group input {
  width: 100%;
  display: block;
  clear: right;
  height: 35px;
  margin-bottom: 5px;
  padding: 1px 10px 1px 13px;
  font-size: 14px;
  line-height: 1.42857;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form .form-group input[disabled] {
  background-color: inherit;
  background-image: none;
  border: none;
  border-radius: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.form .form-actions {
  margin: 0;
  background-color: #f5f5f5;
  border-radius: 0 0 2px 2px;
  padding: 1rem 0.5rem;
  padding-right: 1rem;
}
.form .form-actions::after, .form .form-actions::before {
  clear: both;
  display: table;
}
.form .action-right {
  text-align: right;
}
.form .action-left {
  text-align: left;
}
.form .dot {
  position: relative;
  top: 0.2rem;
}

@media screen and (max-width: 800px) {
  .form .form-group {
    padding: 0.3rem 0.2rem;
  }
  .form .form-group .input-group {
    padding-left: 0px;
    padding-right: 0px;
  }
  .form .form-group .input-group:first-of-type {
    padding-left: 0px;
  }
  .form .form-group .input-group:last-of-type {
    padding-right: 0px;
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 200;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal .modal-centered {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  min-height: 100% !important;
  padding: 20px;
  box-sizing: border-box;
}
.modal .modal-centered .content {
  width: 100% !important;
  max-width: 460px !important;
  display: block !important;
  margin: auto !important;
}

.login-card {
  --primary: #B33791;
  --primary-dark: #8a2770;
  --primary-light: rgba(179, 55, 145, 0.10);
  --text-main: #1e293b;
  --text-secondary: #64748b;
  --bg-input: #f8fafc;
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  padding: 36px 36px 32px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(148, 163, 184, 0.12);
  font-family: "Poppins", system-ui, sans-serif;
  box-sizing: border-box;
}
.login-card .login-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 16px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
.login-card .login-close-btn:hover {
  background: #f1f5f9;
  color: var(--text-main);
}
.login-card .login-header {
  text-align: center;
  margin-bottom: 24px;
}
.login-card .login-header .login-logo {
  margin-bottom: 12px;
}
.login-card .login-header .login-logo img {
  height: 52px;
  width: 52px;
  object-fit: contain;
}
.login-card .login-header .login-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.login-card .login-header .login-subtitle {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 400;
}
.login-card .login-input-group {
  margin-bottom: 14px;
}
.login-card .login-input-group.login-row {
  display: flex;
  gap: 10px;
}
.login-card .login-input-group.login-row .login-input-wrapper {
  flex: 1;
}
.login-card .login-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.login-card .login-input-icon {
  position: absolute;
  left: 11px;
  width: 15px;
  height: 15px;
  color: var(--text-secondary);
  pointer-events: none;
  flex-shrink: 0;
}
.login-card .login-input {
  width: 100%;
  height: 42px;
  padding: 0 12px 0 36px;
  font-size: 13.5px;
  font-family: "Poppins", sans-serif;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  background: var(--bg-input);
  color: var(--text-main);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  box-sizing: border-box;
}
.login-card .login-input::placeholder {
  color: var(--text-secondary);
  font-size: 12px;
}
.login-card .login-input:hover {
  border-color: #cbd5e1;
}
.login-card .login-input:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px var(--primary-light);
}
.login-card .login-captcha-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.login-card .login-captcha-row .login-captcha-img {
  height: 44px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}
.login-card .login-captcha-row .login-captcha-refresh {
  font-size: 12px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.login-card .login-captcha-row .login-captcha-refresh:hover {
  color: var(--primary-dark);
}
.login-card .login-submit-btn {
  position: relative;
  width: 100%;
  height: 44px;
  margin-top: 8px;
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 14.5px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.3px;
}
.login-card .login-submit-btn .login-btn-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.login-card .login-submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(179, 55, 145, 0.3);
}
.login-card .login-submit-btn:hover .login-btn-glow {
  transform: translateX(100%);
}
.login-card .login-submit-btn:active {
  transform: translateY(0);
  box-shadow: none;
}
.login-card .login-footer-text {
  margin: 16px 0 0;
  text-align: center;
  font-size: 12px;
  color: var(--text-secondary);
}
.login-card .login-footer-text .login-switch-link {
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  margin-left: 4px;
  transition: color 0.2s;
}
.login-card .login-footer-text .login-switch-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

@media screen and (max-width: 640px) {
  .login-card {
    padding: 24px 20px 20px;
    border-radius: 20px;
    max-width: 380px;
  }
  .login-card .login-close-btn {
    top: 10px;
    right: 10px;
  }
  .login-card .login-header {
    margin-bottom: 18px;
  }
  .login-card .login-header .login-title {
    font-size: 17px;
    margin-bottom: 2px;
  }
  .login-card .login-header .login-subtitle {
    font-size: 11px;
  }
  .login-card .login-header .login-logo img {
    height: 40px;
    width: 40px;
    margin-bottom: 8px;
  }
  .login-card .login-input-group {
    margin-bottom: 12px;
  }
  .login-card .login-input {
    height: 38px;
    font-size: 13px;
    padding: 0 10px 0 32px;
    border-radius: 10px;
  }
  .login-card .login-input-icon {
    left: 10px;
    width: 14px;
    height: 14px;
  }
  .login-card .login-input-group.login-row {
    flex-direction: column;
    gap: 12px;
  }
  .login-card .login-captcha-row {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
  }
  .login-card .login-captcha-row .login-captcha-img {
    width: auto;
    height: 38px;
    border-radius: 8px;
  }
  .login-card .login-submit-btn {
    height: 40px;
    font-size: 14px;
    border-radius: 10px;
    margin-top: 6px;
  }
  .login-card .login-footer-text {
    margin: 12px 0 0;
    font-size: 11px;
  }
}
@media screen and (max-width: 400px) {
  .login-card {
    padding: 20px 16px 16px;
    max-width: 100%;
  }
  .login-card .login-header .login-logo img {
    height: 36px;
    width: 36px;
  }
  .login-card .login-header .login-title {
    font-size: 16px;
  }
  .login-card .login-input {
    height: 36px;
    font-size: 12px;
  }
  .login-card .login-captcha-row .login-captcha-img {
    height: 36px;
  }
  .login-card .login-submit-btn {
    height: 38px;
    font-size: 13px;
  }
}
.profile-container {
  background: transparent;
  padding: 0;
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
}
.profile-container .profile-layout-wrapper {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  padding: 30px;
  align-items: start;
}
@media (max-width: 900px) {
  .profile-container .profile-layout-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.profile-left-pane {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fdfdfd;
  padding: 30px 20px;
  border-radius: 10px;
  border: 1px solid #f0f0f0;
}
.profile-left-pane .avatar-interactive {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: #f0f0f0;
  transition: transform 0.2s ease;
  margin-bottom: 20px;
}
.profile-left-pane .avatar-interactive:hover {
  transform: scale(1.02);
}
.profile-left-pane .avatar-interactive:hover::after {
  content: "Ubah Foto";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  text-align: center;
  font-size: 13px;
  padding: 10px 0;
}
.profile-left-pane .avatar-interactive img, .profile-left-pane .avatar-interactive .fallback-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.profile-left-pane .avatar-interactive .fallback-avatar {
  background: #e2e2e2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
}
.profile-left-pane .profile-name h2 {
  margin: 0;
  font-size: 20px;
  color: #333333;
  text-align: center;
}
.profile-left-pane .profile-name p {
  margin: 5px 0 0 0;
  color: #777777;
  text-align: center;
  font-size: 14px;
}
.profile-left-pane .upload-panel-collapse {
  display: none;
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.profile-left-pane .upload-panel-collapse.active {
  display: block;
  animation: fadeInDown 0.3s ease;
}
.profile-left-pane .upload-panel-collapse .upload-form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.profile-left-pane .upload-panel-collapse .upload-form-group input[type=file] {
  width: 100%;
  padding: 8px;
  background: white;
  border: 1px dashed #ccc;
  border-radius: 5px;
  font-size: 12px;
}
.profile-left-pane .upload-panel-collapse .upload-form-group .help-block {
  text-align: center;
  font-size: 11px;
  color: #888;
}
.profile-left-pane .upload-panel-collapse .upload-form-group .help-block a {
  color: red;
}
.profile-left-pane .upload-panel-collapse .upload-form-group .action-buttons {
  display: flex;
  gap: 10px;
}
.profile-left-pane .upload-panel-collapse .upload-form-group .action-buttons .btnOk {
  flex: 1;
  padding: 8px;
  border-radius: 6px;
  border: none;
  background: #a805a8;
  color: white;
  cursor: pointer;
  font-size: 13px;
}
.profile-left-pane .upload-panel-collapse .upload-form-group .action-buttons .btnCancel {
  flex: 1;
  padding: 8px;
  border-radius: 6px;
  border: none;
  background: #f1f3f5;
  color: #333;
  cursor: pointer;
  font-size: 13px;
}

.profile-right-pane .card-title {
  font-size: 20px;
  color: #333333;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}
.profile-right-pane .form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.profile-right-pane .form-grid .form-group-modern {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.profile-right-pane .form-grid .form-group-modern.full-width {
  grid-column: 1/-1;
}
.profile-right-pane .form-grid .form-group-modern label {
  font-size: 13px;
  color: #777777;
  font-weight: 500;
}
.profile-right-pane .form-grid .form-group-modern label .required {
  color: red;
  margin-left: 2px;
}
.profile-right-pane .form-grid .form-group-modern .bioFormInput, .profile-right-pane .form-grid .form-group-modern input[type=password], .profile-right-pane .form-grid .form-group-modern input[type=text], .profile-right-pane .form-grid .form-group-modern select {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #e1e1e1;
  border-radius: 6px;
  font-size: 14px;
  color: #333;
  background: #fdfdfd;
  transition: all 0.2s ease;
}
.profile-right-pane .form-grid .form-group-modern .bioFormInput:focus, .profile-right-pane .form-grid .form-group-modern input[type=password]:focus, .profile-right-pane .form-grid .form-group-modern input[type=text]:focus, .profile-right-pane .form-grid .form-group-modern select:focus {
  border-color: #a805a8;
  box-shadow: 0 0 0 3px rgba(168, 5, 168, 0.1);
  outline: none;
  background: #fff;
}
.profile-right-pane .form-grid .form-group-modern .bioFormInput:disabled, .profile-right-pane .form-grid .form-group-modern input[type=password]:disabled, .profile-right-pane .form-grid .form-group-modern input[type=text]:disabled, .profile-right-pane .form-grid .form-group-modern select:disabled {
  background: #f0f0f0;
  color: #888;
}
.profile-right-pane .form-grid .form-group-modern .alamat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}
.profile-right-pane .form-actions {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  border-top: 1px solid #f0f0f0;
  padding-top: 25px;
}
.profile-right-pane .form-actions button {
  padding: 12px 25px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.profile-right-pane .form-actions button.btn-edit {
  background: #fbeffe;
  color: #a805a8;
  border: 1px solid #a805a8;
}
.profile-right-pane .form-actions button.btn-edit:hover {
  background: #a805a8;
  color: white;
}
.profile-right-pane .form-actions button.btn-update {
  background: #a805a8;
  color: white;
}
.profile-right-pane .form-actions button.btn-update:hover {
  background: rgb(118.4739884393, 3.5260115607, 118.4739884393);
}
.profile-right-pane .form-actions button.btn-cancel {
  background: #f1f3f5;
  color: #495057;
}
.profile-right-pane .form-actions button.btn-cancel:hover {
  background: #e2e6ea;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* button */
.btn {
  text-decoration: none;
  display: inline-block;
  margin-left: 6px;
  margin-right: 6px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 4px 8px;
  line-height: 1.42857;
  border-radius: 4px;
  user-select: none;
  outline: 0 !important;
  transition: border-color ease-in-out 0.15s, box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:first-of-type {
  margin-left: 0px;
}

.btn:last-of-type {
  margin-right: 0px;
}

.btn:hover {
  transition: all 0.3s;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.28);
}

.btn-medium {
  min-width: 90px;
  border-radius: 3px;
  padding-top: 8px;
  padding-bottom: 7px;
}

.btn-small {
  font-size: small;
  min-width: 50px;
  border-radius: 3px;
  padding-top: 2px;
  padding-bottom: 2px;
  border: 2px solid;
}

.btn-tiny {
  font-size: small;
  min-width: 18px;
  border-radius: 3px;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 3px;
  padding-right: 3px;
  margin: 1px;
  border: 1px solid;
}

.btn-ok {
  color: #ffffff;
  background-color: #a805a8;
  border-color: #8a048a;
}

.btn-download {
  color: #ffffff;
  background-color: #247bf2;
  border-color: #5161f6;
}

.btn-cancel {
  color: #ffffff;
  background-color: #f25f17;
  border-color: #df4402;
}

.btn-alert {
  color: #ffffff;
  background-color: #e01313;
  border-color: #901d3a;
}

.btn-danger {
  color: #ffffff;
  background-color: #e01313;
  border-color: #901d3a;
}

.btn-view {
  color: #ffffff;
  background-color: #00dc21;
  border-color: #00ba21;
}

.btn-disable {
  color: #ffffff;
  background-color: #cccccc;
  border-color: #b5b5b5;
}

.btn-minimize:before {
  content: "̲";
}

.btn-fullsize:before {
  content: "⛶";
}

.btn-normalize:before {
  content: "⤦";
}

.btn-maximize:before {
  content: "⛶";
}

.btn-help:before {
  content: "?";
}

.btn-edit:before {
  content: " ✎";
}

.btn-close:before {
  content: "🗙";
}

.row {
  display: flex;
  flex-wrap: wrap;
  /* 	margin-right: -15px;
  margin-left: -15px; */
}

.row .col-md-8,
.row .col-md-6,
.row .col-md-5,
.row .col-md-4,
.row .col-md-3,
.row .col-md-2,
.row .col-md-1,
.col-bg-1,
.col-bg-2 {
  vertical-align: top;
  padding-left: 15px;
  padding-right: 15px;
  display: inline-block;
}

.row .col-md-8 {
  width: 77.7777777778%;
}

.row .col-md-6 {
  width: 50%;
}

.row .col-md-5 {
  width: 50%;
}

.row .col-md-4 {
  width: 33.3333333333%;
}

.row .col-md-3 {
  width: 25%;
}

.row .col-md-2 {
  width: 20%;
}

.row .col-md-1 {
  width: 16.6666666667%;
}

.modal-content .col-sm-1,
.modal-content .col-sm-2,
.modal-content .col-sm-3,
.modal-content .col-sm-4,
.modal-content .col-sm-5 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  width: 90%;
  display: inline-block;
}

.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-13,
.col-sm-14,
.col-sm-15,
.col-sm-16,
.col-sm-17,
.col-sm-18,
.col-sm-19 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  width: 65%;
  display: inline-block;
}

.col-sm-1 {
  max-width: 300px;
}

.col-sm-2 {
  max-width: 145px;
}

.col-sm-3 {
  max-width: 225px;
}

.col-sm-4 {
  max-width: 275px;
}

.col-sm-5 {
  max-width: 160px;
}

.col-sm-6 {
  max-width: 140px;
}

.col-sm-7 {
  max-width: 190px;
}

.col-sm-8 {
  max-width: 150px;
}

.col-sm-9 {
  max-width: 250px;
}

.col-sm-10 {
  max-width: 195px;
}

.col-sm-11 {
  max-width: 195px;
}

.col-sm-12 {
  max-width: 350px;
}

.col-sm-13 {
  max-width: 315px;
}

.col-sm-14 {
  max-width: 500px;
}

.col-sm-15 {
  max-width: 280px;
}

.col-sm-16 {
  max-width: 210px;
}

.col-sm-17 {
  max-width: 450px;
}

.col-sm-A {
  max-width: 400px;
}

.col-sm-B {
  max-width: 300px;
}

.col-sm-C {
  max-width: 250px;
}

.col-sm-D {
  max-width: 200px;
}

/* Mobile view */
@media screen and (max-width: 800px) {
  .row .col-sm-1,
  .row .col-sm-2,
  .row .col-sm-3,
  .row .col-sm-4,
  .row .col-sm-5,
  .row .col-sm-6,
  .row .col-sm-7,
  .row .col-sm-8,
  .row .col-sm-9,
  .row .col-sm-10,
  .row .col-sm-10A,
  .row .col-sm-10B,
  .row .col-sm-10C,
  .row .col-sm-10D,
  .row .col-sm-11,
  .row .col-sm-12,
  .row .col-sm-13,
  .row .col-sm-14,
  .row .col-sm-15,
  .row .col-sm-16,
  .row .col-sm-17,
  .row .col-sm-18,
  .row .col-sm-19 {
    clear: left;
    padding-left: 0px;
    padding-right: 0px;
    float: left;
    max-width: 100%;
    width: 100%;
  }
  .row .col-sm-A,
  .row .col-sm-B,
  .row .col-sm-C,
  .row .col-sm-D {
    padding-left: 0px;
    padding-right: 0px;
    max-width: 100%;
  }
  .row .col-md-1,
  .row .col-md-2,
  .row .col-md-3,
  .row .col-md-4,
  .row .col-md-6,
  .row .col-md-8 {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
    display: inline-block;
  }
}
content .content {
  margin: 0.8rem;
}

.content .header {
  border-bottom: 1px solid #c07afd;
  padding: 0.5rem;
  color: #c07afd;
  font-weight: bold;
  margin: 1rem -0.8rem;
}
content .content .field {
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.18);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.18);
}

.content .field {
  position: relative;
  border-radius: 3px;
  margin: 0 0 20px;
  background-color: white;
  padding: 15px 15px 15px 15px;
}
.content .field h1 {
  padding-bottom: 8px;
  margin: 0;
  font-weight: bold;
  font-size: large;
  color: rgb(143, 26, 186);
  border-bottom: 1.3px solid rgb(219, 190, 255);
  margin-bottom: 10px;
}
.content .field h1 > span {
  position: absolute;
  right: 0.8rem;
  text-align: right;
}
.content .field .file-Field {
  padding: 15px 0px 15px 0px;
  text-align: left;
}
.content .field .file-Field .file {
  width: 120px;
  padding: 10px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

@media screen and (max-width: 769px) {
  .content .field .file-Field {
    text-align: center;
  }
  .content .field .file-Field .file {
    text-align: center;
  }
}
.dashboard-container {
  display: flex !important;
  align-items: stretch;
  min-height: calc(100vh - 60px);
}
@media screen and (max-width: 768px) {
  .dashboard-container {
    flex-direction: column;
  }
}

.dashboard-mobile-header {
  display: none;
  background: #ffffff;
  padding: 15px 20px;
  align-items: center;
  border-bottom: 1px solid #eaeaea;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}
.dashboard-mobile-header .burger-btn {
  background: transparent;
  border: none;
  padding: 0;
  margin-right: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.dashboard-mobile-header .burger-btn svg {
  width: 24px;
  height: 24px;
  color: #333;
}
.dashboard-mobile-header .mobile-header-title {
  font-weight: 600;
  font-size: 16px;
  color: #9b59b6;
}
@media screen and (max-width: 768px) {
  .dashboard-mobile-header {
    display: flex !important;
  }
}

.sidebar-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.sidebar-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.dashboard-sidebar-wrapper {
  display: flex !important;
  flex-direction: column;
  position: relative !important;
  width: 250px !important;
  flex-shrink: 0;
  height: auto !important;
  margin-top: 0 !important;
  margin-left: 0 !important;
  padding-top: 25px;
  border-radius: 0 !important;
  background: #ffffff;
  border-right: 1px solid #eaeaea;
  z-index: 10;
  box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.02);
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 768px) {
  .dashboard-sidebar-wrapper {
    position: fixed !important;
    top: 0;
    bottom: 0;
    height: 100vh !important;
    left: -100%;
    z-index: 1000 !important;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 0;
  }
  .dashboard-sidebar-wrapper.open {
    left: 0;
  }
}

.dashboard-main-content {
  min-height: 100vh;
  background-color: #ececec;
  padding: 30px;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  .dashboard-main-content {
    padding: 15px;
  }
}

.dashboard-sidebar-menu {
  list-style: none;
  padding: 15px 0;
  margin: 0;
  flex-grow: 1;
  font-family: "Poppins", sans-serif;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(155, 89, 182, 0.25) transparent;
}
.dashboard-sidebar-menu::-webkit-scrollbar {
  width: 4px;
}
.dashboard-sidebar-menu::-webkit-scrollbar-track {
  background: transparent;
}
.dashboard-sidebar-menu::-webkit-scrollbar-thumb {
  background-color: rgba(155, 89, 182, 0.25);
  border-radius: 4px;
}
.dashboard-sidebar-menu .sidebar-item {
  margin-bottom: 2px;
}
.dashboard-sidebar-menu .sidebar-item a {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  color: #555555;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  transition: all 0.2s ease;
}
.dashboard-sidebar-menu .sidebar-item a .sidebar-icon {
  width: 18px;
  height: 18px;
  margin-right: 12px;
  color: #999999;
  flex-shrink: 0;
  transition: color 0.2s ease;
}
.dashboard-sidebar-menu .sidebar-item a:hover {
  background-color: rgba(155, 89, 182, 0.05);
  color: #9b59b6;
}
.dashboard-sidebar-menu .sidebar-item a:hover .sidebar-icon {
  color: #9b59b6;
}
.dashboard-sidebar-menu .sidebar-item.active a {
  color: #9b59b6;
  border-left: 3px solid #9b59b6;
  padding-left: 17px;
  background-color: rgba(155, 89, 182, 0.08);
}
.dashboard-sidebar-menu .sidebar-item.active a .sidebar-icon {
  color: #9b59b6;
}

.dashboard-sidebar-footer {
  padding: 15px;
  border-top: 1px solid #eaeaea;
  flex-shrink: 0;
  font-family: "Poppins", sans-serif;
  background: #ffffff;
}
.dashboard-sidebar-footer .dashboard-logout-btn {
  display: flex;
  align-items: center;
  color: #e74c3c;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}
.dashboard-sidebar-footer .dashboard-logout-btn .sidebar-icon {
  width: 18px;
  height: 18px;
  margin-right: 12px;
  flex-shrink: 0;
}
.dashboard-sidebar-footer .dashboard-logout-btn:hover {
  text-decoration: underline;
}

.dashboard-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.dashboard-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .dashboard-card {
    padding: 20px;
  }
}

.dashboard-card-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.dashboard-banner {
  border-radius: 12px;
  padding: 25px;
  color: #ffffff;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.dashboard-banner .banner-icon-wrapper {
  background: #ffffff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}
.dashboard-banner .banner-icon-wrapper .banner-icon {
  width: 28px;
  height: 28px;
}
.dashboard-banner .banner-text {
  display: flex;
  flex-direction: column;
}
.dashboard-banner .banner-text .banner-title {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 5px;
}
.dashboard-banner .banner-text .banner-value {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.dashboard-banner.banner-status {
  background: linear-gradient(135deg, #d980b3, #9b59b6);
}
.dashboard-banner.banner-status .banner-icon {
  color: #9b59b6;
}
.dashboard-banner.banner-info {
  background: linear-gradient(135deg, #e598cf, #d881b8);
}
.dashboard-banner.banner-info .banner-icon {
  color: #d881b8;
}

.dashboard-table-container {
  margin-top: 20px;
}
.dashboard-table-container .dashboard-section-title {
  font-size: 16px;
  color: #888;
  margin-bottom: 15px;
  border-bottom: 2px solid #9b59b6;
  display: inline-block;
  padding-bottom: 5px;
}

.dashboard-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 14px;
}
.dashboard-table thead tr {
  border-bottom: 2px solid #eaeaea;
}
.dashboard-table thead th {
  text-align: left;
  padding: 15px 10px;
  color: #a1a1aa;
  font-weight: 500;
  white-space: nowrap;
}
.dashboard-table tbody tr {
  border-bottom: 1px solid #f4f4f5;
  transition: background-color 0.2s ease;
}
.dashboard-table tbody tr:hover {
  background-color: #fafafa;
}
.dashboard-table tbody td {
  padding: 15px 10px;
  color: #3f3f46;
  vertical-align: middle;
}
.dashboard-table tbody td.heavy {
  font-weight: 600;
  color: #18181b;
}

.dashboard-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}
.dashboard-badge.status-new {
  background-color: #e6f4ea;
  color: #1e8e3e;
}
.dashboard-badge.status-verif {
  background-color: #f1f3f4;
  color: #5f6368;
}
.dashboard-badge.status-planned {
  background-color: #e8f0fe;
  color: #1967d2;
}
.dashboard-badge.status-trigger {
  background-color: #fce8e6;
  color: #d93025;
}
.dashboard-badge.status-escalation {
  background-color: #fef7e0;
  color: #f29900;
}

.dashboard-banner.banner-status, .dashboard-banner.banner-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.dashboard-banner.banner-status .banner-status-header, .dashboard-banner.banner-info .banner-status-header {
  display: flex;
  align-items: center;
  width: 100%;
}
.dashboard-banner.banner-status .banner-icon-wrapper, .dashboard-banner.banner-info .banner-icon-wrapper {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.dashboard-banner.banner-status .banner-text .banner-title, .dashboard-banner.banner-info .banner-text .banner-title {
  color: #475569;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
}
.dashboard-banner.banner-status .banner-text .banner-value, .dashboard-banner.banner-info .banner-text .banner-value {
  font-weight: 700;
  font-size: 16px;
  margin-top: 2px;
}
.dashboard-banner.banner-status .status-note, .dashboard-banner.banner-info .status-note {
  font-size: 12px;
  margin-top: 12px;
  width: 100%;
  opacity: 0.9;
  color: #1e293b;
  background: rgba(255, 255, 255, 0.6);
  padding: 8px 12px;
  border-radius: 6px;
  line-height: 1.5;
}
.dashboard-banner.banner-status .status-note .read-more-link, .dashboard-banner.banner-info .status-note .read-more-link {
  display: inline-block;
  margin-top: 6px;
  color: #9b59b6;
  font-weight: 600;
  text-decoration: none;
}
.dashboard-banner.banner-status .status-note .read-more-link:hover, .dashboard-banner.banner-info .status-note .read-more-link:hover {
  text-decoration: underline;
}

.dashboard-banner.banner-info-editorial,
.dashboard-banner.banner-status-editorial {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  padding: 30px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dashboard-banner.banner-info-editorial.banner-info-editorial,
.dashboard-banner.banner-status-editorial.banner-info-editorial {
  background: linear-gradient(135deg, #2b1055, #7597de);
  box-shadow: 0 15px 35px rgba(43, 16, 85, 0.2);
}
.dashboard-banner.banner-info-editorial.banner-info-editorial:hover,
.dashboard-banner.banner-status-editorial.banner-info-editorial:hover {
  box-shadow: 0 20px 40px rgba(43, 16, 85, 0.3);
}
.dashboard-banner.banner-info-editorial.banner-status-editorial,
.dashboard-banner.banner-status-editorial.banner-status-editorial {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.dashboard-banner.banner-info-editorial.banner-status-editorial:hover,
.dashboard-banner.banner-status-editorial.banner-status-editorial:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.dashboard-banner.banner-info-editorial.banner-status-editorial .banner-bg-text,
.dashboard-banner.banner-status-editorial.banner-status-editorial .banner-bg-text {
  color: rgba(255, 255, 255, 0.1);
}
.dashboard-banner.banner-info-editorial:hover,
.dashboard-banner.banner-status-editorial:hover {
  transform: translateY(-5px);
}
.dashboard-banner.banner-info-editorial .banner-bg-text,
.dashboard-banner.banner-status-editorial .banner-bg-text {
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
  transform: rotate(-5deg);
  z-index: 1;
  letter-spacing: -2px;
}
.dashboard-banner.banner-info-editorial .banner-content-wrapper,
.dashboard-banner.banner-status-editorial .banner-content-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
}
.dashboard-banner.banner-info-editorial .banner-badge,
.dashboard-banner.banner-status-editorial .banner-badge {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.dashboard-banner.banner-info-editorial .banner-editorial-title,
.dashboard-banner.banner-status-editorial .banner-editorial-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 10px;
  color: #ffffff;
  letter-spacing: -0.5px;
}
.dashboard-banner.banner-info-editorial .banner-editorial-desc,
.dashboard-banner.banner-status-editorial .banner-editorial-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 20px;
  max-width: 90%;
}
.dashboard-banner.banner-info-editorial .banner-editorial-desc:last-child,
.dashboard-banner.banner-status-editorial .banner-editorial-desc:last-child {
  margin-top: auto;
  margin-bottom: 0;
}
.dashboard-banner.banner-info-editorial .editorial-read-more,
.dashboard-banner.banner-status-editorial .editorial-read-more {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  color: #2b1055;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 30px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin-top: auto;
}
.dashboard-banner.banner-info-editorial .editorial-read-more .arrow,
.dashboard-banner.banner-status-editorial .editorial-read-more .arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.dashboard-banner.banner-info-editorial .editorial-read-more:hover,
.dashboard-banner.banner-status-editorial .editorial-read-more:hover {
  background: #f0f0f0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.dashboard-banner.banner-info-editorial .editorial-read-more:hover .arrow,
.dashboard-banner.banner-status-editorial .editorial-read-more:hover .arrow {
  transform: translateX(4px);
}
.dashboard-banner.banner-info-editorial .status-editorial-note,
.dashboard-banner.banner-status-editorial .status-editorial-note {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border: 1px dashed rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  padding: 10px 15px;
  font-size: 13px;
  line-height: 1.5;
  width: 100%;
  margin-top: auto;
}
.dashboard-banner.banner-info-editorial .status-editorial-note .note-label,
.dashboard-banner.banner-status-editorial .status-editorial-note .note-label {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 11px;
  margin-right: 5px;
  opacity: 0.9;
}

.schedule-container {
  padding: 0;
  margin-top: 20px;
}
.schedule-container .schedule-card .schedule-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.schedule-container .schedule-card .schedule-header .schedule-link {
  font-size: 13px;
  color: #9b59b6;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.schedule-container .schedule-card .schedule-header .schedule-link:hover {
  text-decoration: underline;
}
.schedule-container .schedule-card .table-responsive .modern-table.schedule-table th.col-kegiatan {
  width: 20%;
}
.schedule-container .schedule-card .table-responsive .modern-table.schedule-table th.col-deskripsi {
  width: 30%;
}
.schedule-container .schedule-card .table-responsive .modern-table.schedule-table th.col-mulai {
  width: 15%;
}
.schedule-container .schedule-card .table-responsive .modern-table.schedule-table th.col-selesai {
  width: 15%;
}
.schedule-container .schedule-card .table-responsive .modern-table.schedule-table th.col-pelaksana {
  width: 20%;
}
.schedule-container .schedule-card .table-responsive .modern-table.schedule-table td.td-kegiatan {
  font-weight: 600;
  color: #1e293b;
}
.schedule-container .schedule-card .table-responsive .modern-table.schedule-table td.td-deskripsi {
  font-size: 13px;
  color: #64748b;
}
.schedule-container .schedule-card .table-responsive .modern-table.schedule-table .badge-pelaksana {
  display: inline-block;
  padding: 4px 12px;
  background: #f0e3fc;
  color: #9b59b6;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}
.schedule-container .schedule-card .empty-state.empty-schedule {
  padding: 60px 20px;
  background: transparent;
  border: none;
  text-align: center;
}
.schedule-container .schedule-card .empty-state.empty-schedule .empty-icon-wrapper {
  width: 80px;
  height: 80px;
  background: #f8fafc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.schedule-container .schedule-card .empty-state.empty-schedule .empty-title {
  color: #475569;
  font-size: 18px;
  margin: 0 0 8px;
}
.schedule-container .schedule-card .empty-state.empty-schedule .empty-desc {
  color: #94a3b8;
  font-size: 14px;
  margin: 0;
}

.laporan-set {
  position: relative;
  float: left;
  height: 3.45rem;
}
.laporan-set .laporan-response {
  position: absolute;
}
#dataPendaftar {
  min-width: 1300px;
}

.form .form-group .checkbox {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
}
.form .form-group .checkbox label {
  top: 1.5rem;
  padding: 0rem 2rem;
}
.form .form-group .checkbox {
  /* Hide the browser's default checkbox */
}
.form .form-group .checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  top: 0;
  left: 0;
  /* When the checkbox is checked, add a blue background */
}
.form .form-group .checkbox input:checked ~ .checkmark {
  background-color: rgb(219, 190, 255);
  animation: shrink-bounce 200ms cubic-bezier(0.4, 0, 0.23, 1);
  /* Show the checkmark when checked */
}
.form .form-group .checkbox input:checked ~ .checkmark:after {
  display: block;
  animation: checkbox-check 125ms 250ms cubic-bezier(0.4, 0, 0.23, 1) forwards;
}
.form .form-group .checkbox input[type=checkbox]:checked + label {
  border: solid #673AB7 1px;
}
.form .form-group .checkbox {
  /* On mouse-over, add a grey background color */
}
.form .form-group .checkbox:hover input ~ .checkmark {
  border: solid #673AB7 1px;
}
.form .form-group .checkbox .help-block {
  margin: 1px;
  font-size: medium;
  font-weight: normal;
}
.form .form-group .checkbox {
  /* Create a custom checkbox */
}
.form .form-group .checkbox .checkmark {
  position: absolute;
  top: 5px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: white;
  border: solid rgb(219, 190, 255) 1px;
  border-radius: 3px;
  /* Create the checkmark/indicator (hidden when not checked) */
}
.form .form-group .checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.form .form-group .checkbox .checkmark {
  /* Style the checkmark/indicator */
}
.form .form-group .checkbox .checkmark:after {
  transform: rotate(45deg);
}

@keyframes shrink-bounce {
  0% {
    transform: scale(1);
  }
  33% {
    transform: scale(0.85);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes checkbox-check {
  0% {
    left: 0.25em;
    top: 0.07em;
    width: 0em;
    height: 0em;
    border: solid #7a20b6;
    border-width: 0 0px 3px 0;
    display: block;
  }
  33% {
    left: 0.1em;
    top: 0.5em;
    height: 0.1em;
    border: solid #7a20b6;
    border-width: 0 3px 3px 0;
    display: block;
  }
  100% {
    left: 0.25em;
    top: 0.05em;
    width: 0.3em;
    height: 0.6em;
    border: solid #7a20b6;
    border-width: 0 3px 3px 0;
    display: block;
  }
}
.form .form-group input[type=file] {
  padding: 5px 10px 5px 10px;
}

.form .form-group .input-group input[type=file] {
  position: relative;
  top: -8px;
}

.form .form-group select {
  width: 100%;
  display: block;
  clear: right;
  height: 35px;
  padding-top: 6px;
  padding-right: 10px;
  padding-left: 10px;
  padding-bottom: 6px;
  font-size: 14px;
  line-height: 1.42857;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.form .form-group select option {
  display: block;
  clear: right;
  width: 100%;
  height: 30px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.form .form-group input:focus {
  border-color: #66AFE9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.form .form-group select[disabled] {
  background-color: inherit;
  background-image: none;
  border: none;
  border-radius: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.form .form-group textarea {
  width: 100%;
  display: block;
  clear: right;
  min-height: 5rem;
  min-width: 15rem;
  margin-bottom: 5px;
  padding: 0.5rem;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.info {
  font-size: smaller;
  padding: 10px;
  background-color: #ffffff;
  margin: 10px;
  border: solid #e193fd 2px;
  border-radius: 6px;
}
.info-danger {
  background-color: #ffe0e0;
  border: solid #ffc8c8 2px;
}
.info-success {
  background-color: #e0ffe5;
  border: solid #abf5a2 2px;
}
.info-ok {
  background-color: #e0ffe5;
  border: solid #abf5a2 2px;
}

.schedule-container {
  padding: 10px 0;
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
}
.schedule-container .card-title {
  font-size: 22px;
  color: #a805a8;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0e3fc;
}
.schedule-container .schedule-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  padding: 30px;
  border: 1px solid #f9f9f9;
}
.schedule-container .schedule-card .table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.schedule-container .schedule-card .modern-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 800px;
}
.schedule-container .schedule-card .modern-table th, .schedule-container .schedule-card .modern-table td {
  padding: 16px 20px;
  vertical-align: middle;
}
.schedule-container .schedule-card .modern-table thead th {
  background: linear-gradient(135deg, #a805a8 0%, #bd0fc1 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: none;
  white-space: nowrap;
}
.schedule-container .schedule-card .modern-table thead th:first-child {
  border-top-left-radius: 8px;
}
.schedule-container .schedule-card .modern-table thead th:last-child {
  border-top-right-radius: 8px;
}
.schedule-container .schedule-card .modern-table tbody tr {
  border-bottom: 1px solid #eaeaea;
  transition: background-color 0.2s ease;
}
.schedule-container .schedule-card .modern-table tbody tr:nth-child(even) {
  background-color: #fcf9fe;
}
.schedule-container .schedule-card .modern-table tbody tr:last-child {
  border-bottom: none;
}
.schedule-container .schedule-card .modern-table tbody tr:hover {
  background-color: #f4e8fa;
}
.schedule-container .schedule-card .modern-table tbody tr td {
  color: #333333;
  font-size: 14px;
  line-height: 1.6;
}
.schedule-container .schedule-card .modern-table tbody tr td:first-child {
  font-weight: 600;
  color: #a805a8;
}
.schedule-container .schedule-card .modern-table tbody tr td:nth-child(2) {
  color: #333333;
  font-size: 13.5px;
  max-width: 320px;
}
.schedule-container .schedule-card .modern-table tbody tr td:nth-child(3), .schedule-container .schedule-card .modern-table tbody tr td:nth-child(4) {
  white-space: nowrap;
  font-size: 13px;
  color: #555;
  font-weight: 500;
}
.schedule-container .schedule-card .modern-table tbody tr td:last-child {
  color: #666666;
}
.schedule-container .schedule-card .empty-state {
  text-align: center;
  padding: 50px 20px;
  color: #666666;
  background: #fdfdfd;
  border-radius: 8px;
  border: 2px dashed #eee;
}
.schedule-container .schedule-card .empty-state p {
  margin: 0;
  font-size: 16px;
}

.desc-container {
  position: relative;
  max-width: 300px;
}

.desc-text {
  max-height: 4.5em; /* Sekitar 3 baris */
  overflow: hidden;
  line-height: 1.5;
  transition: max-height 0.3s ease-out;
}

.desc-text.expanded {
  max-height: 1000px; /* Nilai besar agar bisa expand sepenuhnya */
}

.btn-toggle-desc {
  display: block;
  margin-top: 5px;
  background: none;
  border: none;
  color: #a805a8;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-toggle-desc:hover {
  text-decoration: underline;
}

.schedule-container .schedule-card .modern-table th.col-kegiatan {
  width: 20%;
}
.schedule-container .schedule-card .modern-table th.col-deskripsi {
  width: 30%;
}
.schedule-container .schedule-card .modern-table th.col-mulai {
  width: 15%;
}
.schedule-container .schedule-card .modern-table th.col-selesai {
  width: 15%;
}
.schedule-container .schedule-card .modern-table th.col-pelaksana {
  width: 20%;
}
.schedule-container .schedule-card .modern-table td.td-kegiatan {
  font-weight: 600;
  color: #1e293b;
}
.schedule-container .schedule-card .modern-table .badge-pelaksana {
  display: inline-block;
  padding: 4px 12px;
  background: #f0e3fc;
  color: #a805a8;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}
.schedule-container .schedule-card .empty-state.empty-schedule {
  text-align: center;
  padding: 60px 20px;
  background: transparent;
  border: none;
}
.schedule-container .schedule-card .empty-state.empty-schedule .empty-icon-wrapper {
  width: 80px;
  height: 80px;
  background: #f8fafc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.schedule-container .schedule-card .empty-state.empty-schedule .empty-title {
  color: #475569;
  font-size: 18px;
  margin: 0 0 8px;
}
.schedule-container .schedule-card .empty-state.empty-schedule .empty-desc {
  color: #94a3b8;
  font-size: 14px;
  margin: 0;
}

.placement-container {
  padding: 10px 0;
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
}
.placement-container .card-title {
  font-size: 20px;
  color: #a805a8;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0e3fc;
}
.placement-container .placement-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  padding: 30px;
  border: 1px solid #f9f9f9;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .placement-container .placement-card {
    padding: 20px;
  }
}
.placement-container .placement-info-card .info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px 30px;
}
.placement-container .placement-info-card .info-grid .info-group {
  display: flex;
  flex-direction: column;
  background: #fcfcfc;
  border: 1px solid #f2f2f2;
  border-radius: 8px;
  padding: 12px 15px;
  transition: border-color 0.2s ease;
}
.placement-container .placement-info-card .info-grid .info-group:hover {
  border-color: rgba(168, 5, 168, 0.3);
}
.placement-container .placement-info-card .info-grid .info-group .info-label {
  font-size: 11px;
  text-transform: uppercase;
  color: #666666;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 6px;
}
.placement-container .placement-info-card .info-grid .info-group .info-value {
  font-size: 15px;
  color: #333333;
  font-weight: 500;
  word-wrap: break-word;
}
.placement-container .placement-team-card .table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.placement-container .placement-team-card .modern-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 800px;
}
.placement-container .placement-team-card .modern-table th, .placement-container .placement-team-card .modern-table td {
  padding: 14px 18px;
  vertical-align: middle;
}
.placement-container .placement-team-card .modern-table thead th {
  background: linear-gradient(135deg, #a805a8 0%, #bd0fc1 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  border: none;
  white-space: nowrap;
}
.placement-container .placement-team-card .modern-table thead th:first-child {
  border-top-left-radius: 8px;
}
.placement-container .placement-team-card .modern-table thead th:last-child {
  border-top-right-radius: 8px;
}
.placement-container .placement-team-card .modern-table tbody tr {
  border-bottom: 1px solid #eaeaea;
  transition: background-color 0.2s ease;
}
.placement-container .placement-team-card .modern-table tbody tr:nth-child(even) {
  background-color: #fcf9fe;
}
.placement-container .placement-team-card .modern-table tbody tr:last-child {
  border-bottom: none;
}
.placement-container .placement-team-card .modern-table tbody tr:hover {
  background-color: #f4e8fa;
}
.placement-container .placement-team-card .modern-table tbody tr td {
  color: #333333;
  font-size: 13.5px;
  line-height: 1.5;
}
.placement-container .placement-team-card .modern-table tbody tr td:first-child {
  font-weight: 600;
  color: #a805a8;
}
.placement-container .placement-team-card .modern-table tbody tr td:nth-child(2) {
  font-weight: 600;
  color: #444;
}
.placement-container .placement-team-card .modern-table tbody tr td:nth-child(3), .placement-container .placement-team-card .modern-table tbody tr td:last-child {
  font-family: monospace;
  color: #666;
}

@media print {
  @page {
    margin: 20mm;
    size: A4 portrait;
  }
  body {
    width: 240mm;
    height: 297mm;
    background: white !important;
  }
  .placement-container {
    max-width: none !important;
  }
  .placement-container .card-title {
    color: black !important;
    border-bottom: 2px solid black !important;
  }
  .placement-container .placement-card {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
    padding: 10px !important;
    margin-bottom: 20px !important;
    page-break-inside: avoid;
  }
  .placement-container .placement-info-card .info-grid .info-group {
    border: 1px solid #ccc !important;
    background: white !important;
  }
  .placement-container .modern-table {
    border: 1px solid black !important;
  }
  .placement-container .modern-table thead th {
    background: white !important;
    color: black !important;
    border: 1px solid black !important;
  }
  .placement-container .modern-table tbody tr {
    background: white !important;
  }
  .placement-container .modern-table tbody tr td {
    border: 1px solid black !important;
    color: black !important;
  }
}
@media print {
  @page {
    margin: 20mm;
    size: A4 landscape;
  }
  html,
  body {
    height: 210mm;
    width: 297mm;
    font-size: 12pt;
    background-color: #ffffff !important;
  }
  header,
  nav,
  footer,
  content #sidebar-wraper,
  .field-action,
  .Sidebar,
  .btn {
    display: none;
  }
  content #mainContent,
  .content {
    width: 100% !important;
  }
  content .content {
    margin: 0mm;
  }
  content .content .header {
    border-bottom: 0px;
    color: #000000;
    font-weight: bold;
    margin: 0;
    text-align: center;
    font-size: 20pt;
    vertical-align: middle;
    page-break-after: always;
    margin-top: 75mm;
    text-transform: uppercase;
  }
  content .content .field {
    padding: 0;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
    page-break-after: always;
  }
  content .content .field h1 {
    color: #000000;
    border-bottom: 0px;
    font-weight: bold;
    text-align: center;
    font-size: 12pt;
  }
  content .content .table-view table {
    min-width: auto;
  }
  content .content .table-view {
    overflow-x: hidden !important;
    width: 100%;
  }
  content .content .table-view table, content .content .table-view td, content .content .table-view th {
    border: 1px solid #000000 !important;
  }
  content .content .table-view table {
    padding: 4pt !important;
  }
  content .content .table-view table .thead td {
    margin-top: 55px;
    background-color: #b1b1b1 !important;
    color: #000000 !important;
  }
  content .content .table-view table .laporan-set {
    position: relative;
    float: left;
    height: 2.3rem;
  }
  content .content .table-view table .laporan-set .btn {
    display: inline-block;
    padding: 1mm;
    background-color: white;
    color: black;
    border: 0;
    border-radius: 0;
  }
  content .content .table-view table .laporan-set .btn-ok {
    border-top: 0.3mm solid #000000;
  }
  content .content .table-view table .laporan-set .btn-cancel {
    border-top: 0.4mm dotted #000000;
  }
  content .content .table-view table .laporan-set .btn-view {
    border-top: 0mm dotted #000000;
  }
  content .content .table-view table .laporan-set .laporan-response {
    position: absolute;
    min-height: 1px;
    height: 1px;
    overflow: hidden;
    top: 3mm;
    color: rgba(255, 255, 255, 0);
    background-color: rgba(255, 255, 255, 0);
    transform: rotate(-45deg);
    width: 5mm;
  }
  content .content .table-view table .laporan-collected {
    display: none;
  }
  content .content .table-view table tr:nth-child(even) {
    background-color: white !important;
  }
  .chart-wraper {
    overflow-x: visible !important;
    overflow-y: visible !important;
  }
}
.settings-container {
  padding: 10px 0;
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
}
.settings-container .settings-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  padding: 40px;
  border: 1px solid #f9f9f9;
}
@media screen and (max-width: 768px) {
  .settings-container .settings-card {
    padding: 25px;
  }
}
.settings-container .settings-card .card-header {
  margin-bottom: 30px;
}
.settings-container .settings-card .card-header .card-title {
  font-size: 20px;
  color: #a805a8;
  font-weight: 700;
  margin: 0 0 10px 0;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0e3fc;
}
.settings-container .settings-card .card-header .card-subtitle {
  font-size: 14px;
  color: #777777;
  margin: 10px 0 0 0;
  line-height: 1.4;
}
.settings-container .settings-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 25px;
}
.settings-container .settings-form-group label {
  font-size: 14px;
  color: #333333;
  font-weight: 600;
}
.settings-container .settings-form-group label .required {
  color: #e74c3c;
  margin-left: 3px;
}
.settings-container .settings-form-group input[type=password],
.settings-container .settings-form-group input[type=text] {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  background: #fdfdfd;
  transition: all 0.2s ease;
}
.settings-container .settings-form-group input[type=password]:focus,
.settings-container .settings-form-group input[type=text]:focus {
  border-color: #a805a8;
  box-shadow: 0 0 0 3px rgba(168, 5, 168, 0.1);
  outline: none;
  background: #fff;
}
.settings-container .settings-form-group .input-hint {
  font-size: 12px;
  color: #888;
  margin-top: -3px;
}
.settings-container .form-actions {
  margin-top: 35px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.settings-container .form-actions .btn-save {
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  font-size: 15px;
  background: #a805a8;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(168, 5, 168, 0.2);
}
.settings-container .form-actions .btn-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(168, 5, 168, 0.3);
  background: rgb(143.2369942197, 4.2630057803, 143.2369942197);
}

.settings-container .mb-20 {
  margin-bottom: 20px;
}
.settings-container .header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.settings-container .btn-upload {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #a805a8;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.settings-container .btn-upload:hover {
  background: #8a0489;
}
.settings-container .gallery-grid-wrapper {
  margin-top: 24px;
}
.settings-container .gallery-grid-admin {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.settings-container .gallery-card-admin {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s;
}
.settings-container .gallery-card-admin:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.settings-container .gallery-thumb {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
  background: #f0e3fc;
}
.settings-container .gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.settings-container .gallery-info-box {
  padding: 10px 12px 12px;
}
.settings-container .gallery-caption {
  font-size: 12px;
  color: #64748b;
  margin: 0 0 4px;
  line-height: 1.4;
  min-height: 34px;
}
.settings-container .empty-caption {
  color: #cbd5e1;
}
.settings-container .gallery-date {
  font-size: 11px;
  color: #94a3b8;
  margin: 0 0 10px;
}
.settings-container .gallery-actions {
  display: flex;
  gap: 6px;
}
.settings-container .btn-edit-sm {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 10px;
  background: #f0e3fc;
  color: #a805a8;
  border-radius: 6px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s;
}
.settings-container .btn-edit-sm:hover {
  background: #a805a8;
  color: #fff;
}
.settings-container .btn-delete-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #fef2f2;
  color: #dc2626;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.settings-container .btn-delete-sm:hover {
  background: #dc2626;
  color: #fff;
}
.settings-container .empty-gallery-admin {
  text-align: center;
  padding: 70px 20px;
}
.settings-container .empty-gallery-admin .empty-gallery-icon {
  width: 80px;
  height: 80px;
  background: #f0e3fc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.settings-container .empty-gallery-admin .empty-gallery-title {
  color: #475569;
  font-size: 16px;
  margin: 0 0 8px;
}
.settings-container .empty-gallery-admin .empty-gallery-desc {
  color: #94a3b8;
  font-size: 14px;
  margin: 0 0 20px;
}
.settings-container .empty-gallery-admin .btn-upload-first {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #a805a8;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.delete-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.delete-modal-box {
  background: white;
  border-radius: 16px;
  padding: 30px;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  text-align: center;
  animation: galModalIn 0.2s ease;
}

.delete-modal-icon {
  width: 56px;
  height: 56px;
  background: #fef2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.delete-modal-title {
  margin: 0 0 8px;
  font-size: 18px;
  color: #1e293b;
}

.delete-modal-text {
  color: #64748b;
  font-size: 14px;
  margin: 0 0 24px;
  line-height: 1.5;
}

.delete-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.btn-cancel-modal {
  padding: 10px 24px;
  background: #f1f5f9;
  color: #475569;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-delete-modal {
  padding: 10px 24px;
  background: #dc2626;
  color: white;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-delete-modal:hover {
  background: #b91c1c;
}

@keyframes galModalIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
input[type=date] {
  color: #1e293b !important;
}

.settings-container .mb-24 {
  margin-bottom: 24px;
}
.settings-container .mt-24 {
  margin-top: 24px;
}
.settings-container .mt-30 {
  margin-top: 30px;
}
.settings-container .gallery-current-photo {
  margin-bottom: 24px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}
.settings-container .gallery-current-photo .gallery-current-label {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.settings-container .gallery-current-photo .gallery-current-img {
  max-width: 320px;
  max-height: 220px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}
.settings-container .gallery-current-photo .gallery-current-hint {
  font-size: 11px;
  color: #94a3b8;
  margin: 8px 0 0;
}
.settings-container .form-label-bold {
  display: block;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
  font-size: 14px;
}
.settings-container .form-label-bold .asterisk {
  color: #dc2626;
}
.settings-container .form-label-bold .optional, .settings-container .form-label-bold .hint {
  color: #94a3b8;
  font-weight: 400;
}
.settings-container .upload-area {
  position: relative;
  padding: 36px 20px;
  border: 2px dashed #d1d5db;
  border-radius: 10px;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  background: #fafafa;
}
@media (max-width: 480px) {
  .settings-container .upload-area {
    padding: 24px 12px;
  }
}
.settings-container .upload-area:hover, .settings-container .upload-area.drag-over {
  border-color: #a805a8;
  background: #faf5ff;
}
.settings-container .upload-area .upload-input-hidden {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.settings-container .upload-area .upload-placeholder-content svg {
  margin-bottom: 10px;
}
.settings-container .upload-area .upload-placeholder-content .placeholder-main {
  margin: 0;
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}
.settings-container .upload-area .upload-placeholder-content .placeholder-sub {
  margin: 4px 0 0;
  font-size: 12px;
  color: #94a3b8;
}
.settings-container .upload-area .upload-preview .upload-preview-img {
  max-width: 100%;
  max-height: 260px;
  border-radius: 8px;
  object-fit: contain;
  pointer-events: none;
}
.settings-container .upload-area .upload-preview .upload-preview-name {
  margin: 8px 0 0;
  font-size: 12px;
  color: #64748b;
}
.settings-container .form-textarea-custom {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  background: #fcfcfc;
  outline: none;
  resize: vertical;
  line-height: 1.6;
  font-family: inherit;
  transition: all 0.2s;
  color: #1e293b;
}
.settings-container .form-textarea-custom:focus {
  border-color: #a805a8;
  box-shadow: 0 0 0 3px rgba(168, 5, 168, 0.1);
}
.settings-container .form-actions-flex {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}
.settings-container .form-actions-flex.form-actions-end {
  justify-content: flex-end;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}
.settings-container .form-actions-flex .btn-submit-main, .settings-container .form-actions-flex .btn-action-submit {
  padding: 12px 28px;
  background: #a805a8;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.settings-container .form-actions-flex .btn-submit-main:hover, .settings-container .form-actions-flex .btn-action-submit:hover {
  background: #8a0489;
}
.settings-container .form-actions-flex .btn-cancel-light {
  padding: 12px 28px;
  background: #f1f5f9;
  color: #475569;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}
.settings-container .form-actions-flex .btn-cancel-light:hover {
  background: #e2e8f0;
}

.settings-container .btn-action-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #a805a8;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.settings-container .btn-action-primary:hover {
  background: #8a0489;
}
.settings-container .table-responsive-wrapper {
  margin-top: 20px;
  overflow-x: auto;
}
.settings-container .admin-table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
  text-align: left;
}
.settings-container .admin-table th {
  padding: 12px 15px;
  background: #f8fafc;
  border-bottom: 2px solid #e2e8f0;
  color: #475569;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}
.settings-container .admin-table th.col-no {
  width: 40px;
}
.settings-container .admin-table th.col-no-50 {
  width: 50px;
}
.settings-container .admin-table th.col-date {
  width: 110px;
}
.settings-container .admin-table th.col-date-120 {
  width: 120px;
}
.settings-container .admin-table th.col-author {
  width: 100px;
}
.settings-container .admin-table th.col-category {
  width: 110px;
}
.settings-container .admin-table th.col-img {
  width: 80px;
}
.settings-container .admin-table th.col-actions {
  width: 130px;
}
.settings-container .admin-table th.col-actions-100 {
  width: 100px;
}
.settings-container .admin-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
  font-size: 14px;
}
.settings-container .admin-table td.td-title-bold {
  font-weight: 600;
  color: #1e293b;
}
.settings-container .admin-table td.td-desc-sm {
  font-size: 12px;
  color: #64748b;
}
.settings-container .admin-table td.td-empty {
  text-align: center;
  padding: 40px;
  color: #94a3b8;
}
.settings-container .admin-table tbody tr:hover {
  background: #f8fafc;
}
.settings-container .badge-custom {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}
.settings-container .badge-custom.badge-purple {
  background: #f0e3fc;
  color: #7c047c;
}
.settings-container .badge-custom.badge-success {
  background: #dcfce7;
  color: #166534;
}
.settings-container .badge-custom.badge-gray {
  background: #f1f5f9;
  color: #94a3b8;
}
.settings-container .actions-flex {
  display: flex;
  gap: 6px;
}
.settings-container .btn-square {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.settings-container .btn-square.btn-edit-purple {
  background: #f0e3fc;
  color: #a805a8;
}
.settings-container .btn-square.btn-edit-purple:hover {
  background: #a805a8;
  color: #fff;
}
.settings-container .btn-square.btn-delete-red {
  background: #fef2f2;
  color: #dc2626;
}
.settings-container .btn-square.btn-delete-red:hover {
  background: #dc2626;
  color: #fff;
}
.settings-container .empty-info-admin {
  text-align: center;
  padding: 60px 20px;
}
.settings-container .empty-info-admin .empty-info-icon-wrapper {
  width: 80px;
  height: 80px;
  background: #f0e3fc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.settings-container .empty-info-admin .empty-info-title {
  color: #475569;
  font-size: 16px;
  margin: 0 0 8px;
}
.settings-container .empty-info-admin .empty-info-desc {
  color: #94a3b8;
  font-size: 14px;
  margin: 0;
}

.modal-overlay-custom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.modal-box-custom {
  background: white;
  border-radius: 16px;
  padding: 30px;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  text-align: center;
  animation: modalFadeIn 0.2s ease;
}
.modal-box-custom .modal-icon-danger {
  width: 56px;
  height: 56px;
  background: #fef2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.modal-box-custom .modal-title {
  margin: 0 0 8px;
  font-size: 18px;
  color: #1e293b;
}
.modal-box-custom .modal-text {
  color: #64748b;
  font-size: 14px;
  margin: 0 0 24px;
  line-height: 1.5;
}
.modal-box-custom .modal-actions-flex {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.btn-cancel-modal {
  padding: 10px 24px;
  background: #f1f5f9;
  color: #475569;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-confirm-delete {
  padding: 10px 24px;
  background: #dc2626;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-confirm-delete:hover {
  background: #b91c1c;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.settings-container .mt-10 {
  margin-top: 10px;
}
.settings-container .form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 640px) {
  .settings-container .form-grid-2 {
    grid-template-columns: 1fr;
  }
}
.settings-container .form-input-custom {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  background: #fcfcfc;
  outline: none;
  transition: all 0.2s;
  color: #1e293b;
}
.settings-container .form-input-custom:focus {
  border-color: #a805a8;
  box-shadow: 0 0 0 3px rgba(168, 5, 168, 0.1);
}
.settings-container .hint-text-sm {
  font-size: 11px;
  color: #94a3b8;
  display: block;
  margin-top: 4px;
}
.settings-container .current-img-preview-box {
  margin-bottom: 12px;
  padding: 12px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}
.settings-container .current-img-preview-box .preview-label {
  font-size: 12px;
  color: #64748b;
  margin: 0 0 8px;
}
.settings-container .current-img-preview-box .preview-img {
  max-width: 300px;
  max-height: 200px;
  border-radius: 8px;
  object-fit: cover;
}
.settings-container .current-img-preview-box .delete-check-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 13px;
  color: #dc2626;
}
.settings-container .current-img-preview-box .delete-check-label input {
  accent-color: #dc2626;
}
.settings-container .btn-action-submit {
  padding: 12px 28px;
  background: #a805a8;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.settings-container .btn-action-submit:hover {
  background: #8a0489;
}
.settings-container .btn-action-cancel {
  padding: 12px 28px;
  background: #f1f5f9;
  color: #475569;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}
.settings-container .btn-action-cancel:hover {
  background: #e2e8f0;
}

/* Date input specific fixes from kelolainformasiform.php */
input[type=date]::-webkit-datetime-edit-text, input[type=date]::-webkit-datetime-edit-month-field, input[type=date]::-webkit-datetime-edit-day-field, input[type=date]::-webkit-datetime-edit-year-field {
  color: #1e293b !important;
}

.table-view {
  overflow-x: scroll;
}

.table-view table {
  min-width: 1000px;
  border-collapse: collapse;
  width: 100%;
}

.table-view table,
.table-view td,
.table-view th {
  border: 1px solid #c85b51;
}

.table-view table .thead td {
  margin-top: 55px;
  background-color: #c85b51;
  color: #FFFFFF;
}

.table-view table .thead td {
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}

.table-view table .trow td {
  padding-right: 8px;
  padding-left: 8px;
}

.table-view table tr:nth-child(even) {
  background-color: mistyrose;
}

.table-view table tr:nth-child(odd) {
  background-color: #ffffff;
}

.timeline {
  position: relative;
}
.timeline .timeline__items .timeline__item:before {
  content: "";
  position: absolute;
  left: 4rem;
  width: 0.214rem;
  top: 5px;
  bottom: 5px;
  height: calc(100% + 1rem);
  background-color: rgb(219, 190, 255);
}
.timeline .timeline__items .timeline__item {
  display: table;
  position: relative;
  margin-bottom: 1rem;
}
.timeline .timeline__items .timeline__item .timeline__item-title {
  display: table-cell;
  font-size: 1rem;
  font-weight: bold;
  vertical-align: top;
  position: absolute;
  padding-top: 0.2rem;
}
.timeline .timeline__items .timeline__item .timeline__item-cricle {
  position: relative;
  top: 0.2rem;
  left: 3.6rem;
  min-width: 1rem;
  max-width: 2rem;
  min-height: 1rem;
  max-height: 2rem;
  z-index: 1;
  border: 0.2rem solid rgb(143, 26, 186);
  border-radius: 50%;
  background-color: white;
  color: white;
  text-align: center;
  vertical-align: middle;
}
.timeline .timeline__items .timeline__item .timeline__item-cricle > i {
  font-size: 1.78rem;
  top: -0.93rem;
  left: -0.57rem;
  position: absolute;
}
.timeline .timeline__items .timeline__item .timeline__item-text {
  display: table-cell;
  vertical-align: top;
  font-size: 0.9rem;
  padding: 0.2rem 0 0 5rem;
}
.timeline .timeline__items .timeline__item .timeline__item-text ul {
  padding: 0.1rem 0.5rem 0.5rem 1rem;
  margin: 0.5rem;
}
.timeline .timeline__items .timeline__item .timeline__item-text.timeline__item-text--bold {
  font-size: 0.9rem;
  font-weight: bold;
  padding-top: 0.21rem;
}
.timeline .timeline__items .timeline__item .timeline__item-text > span {
  font-weight: 700;
}
.timeline .timeline__items .timeline__item .list-pics {
  display: table-cell;
  vertical-align: top;
}
.timeline .timeline__items .timeline__item:last-child:before {
  height: 0px;
}
.timeline .timeline__items .timeline__item:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 769px) {
  .timeline .timeline__items .timeline__item:before {
    left: 0.45rem;
    height: calc(100% + 2rem);
  }
  .timeline .timeline__items .timeline__item {
    display: block;
    position: relative;
    margin-bottom: 2rem;
  }
  .timeline .timeline__items .timeline__item .timeline__item-title {
    position: relative;
    padding-left: 2rem;
  }
  .timeline .timeline__items .timeline__item .timeline__item-cricle {
    position: absolute;
    left: 0.05rem;
  }
  .timeline .timeline__items .timeline__item .timeline__item-text {
    padding: 0.35rem 0 0 2rem;
  }
}
.ct-chart {
  width: 100%;
  height: 400px;
}

.ct-chart-1 {
  width: 100%;
  height: 320px;
}

.ct-chart-6 {
  width: 50%;
  height: 300px;
}

.ct-pie {
  width: 100%;
  height: 600px;
}

.ct-pie-1 {
  width: 100%;
  height: 320px;
}

.ct-series-p .ct-bar,
.ct-series-p .ct-line,
.ct-series-p .ct-point,
.ct-series-p .ct-slice-donut,
.ct-series-p .ct-area,
.ct-series-p .ct-slice-donut-solid,
.ct-series-p .ct-slice-pie {
  stroke: #67e261;
  fill: #67e261;
}

.ct-series-q .ct-bar,
.ct-series-q .ct-line,
.ct-series-q .ct-point,
.ct-series-q .ct-slice-donut,
.ct-series-q .ct-area,
.ct-series-q .ct-slice-donut-solid,
.ct-series-q .ct-slice-pie {
  stroke: #6161e2;
  fill: #6161e2;
}

.ct-series-r .ct-bar,
.ct-series-r .ct-line,
.ct-series-r .ct-point,
.ct-series-r .ct-slice-donut,
.ct-series-r .ct-area,
.ct-series-r .ct-slice-donut-solid,
.ct-series-r .ct-slice-pie {
  stroke: #676261;
  fill: #676261;
}

.ct-chart-donut .ct-label,
.ct-chart-pie .ct-label {
  dominant-baseline: central;
  font-size: 11pt;
  font-weight: bold;
  color: white;
  /* fill: rgb(253, 240, 240); */
  fill: rgb(14, 14, 14);
}

.ct-chart .ct-series > .ct-bar-label {
  font-weight: normal;
  color: white;
  fill: white;
}

.chart-wraper {
  overflow-x: scroll;
  overflow-y: hidden;
}

.ct-chart-bar .ct-label {
  color: black;
}
.ct-chart-bar .ct-label.ct-vertical.ct-start {
  color: black;
}
.ct-chart-bar .ct-label.ct-horizontal.ct-end {
  color: black;
}

/* Refined Institutional Purple Styling for Monitor Page */
.monitor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.ct-series-a .ct-bar {
  stroke: #a805a8 !important;
  stroke-linecap: round;
}

.ct-series-a .ct-slice-pie {
  fill: #a805a8 !important;
}

.ct-series-b .ct-slice-pie {
  fill: #c026d3 !important;
}

.ct-series-c .ct-slice-pie {
  fill: #e879f9 !important;
}

.ct-series-d .ct-slice-pie {
  fill: #f0e3fc !important;
}

.ct-series-e .ct-slice-pie {
  fill: #64748b !important;
}

.ct-series-f .ct-slice-pie {
  fill: #334155 !important;
}

.ct-series-g .ct-slice-pie {
  fill: #94a3b8 !important;
}

.ct-label {
  font-size: 12px;
  font-weight: 500;
  fill: #64748b;
  color: #64748b;
}

.ct-pie-label {
  fill: #fff;
  font-weight: 600;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.4);
  font-size: 11px;
}

/* Chart Height Utilities */
.chart-h-250 {
  height: 250px;
}

.chart-h-300 {
  height: 300px;
}

.chart-h-350 {
  height: 350px;
}

.chart-min-w-600 {
  min-width: 600px;
}

.card-title-sm {
  font-size: 16px !important;
}

.xdebug-var-dump,
.xdebug-error,
.xe-notice {
  z-index: 999999;
  position: relative;
  background: white;
  padding: 15px;
  border: solid 3px darkgoldenrod;
  left: 15px;
  width: 100%;
  max-width: 600px;
  font-size: 10pt;
}

/* Mobile view */
@media screen and (max-width: 769px) {
  .btn-tiny {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 13px;
    padding-right: 13px;
  }
  .field-action .btn-tiny,
  .modal .title .btn-tiny {
    margin: -8px 5px 5px 5px;
  }
}
/* Tablet view */
/* Mobile view */
@media screen and (max-width: 769px) {
  nav .menu .desktop {
    display: none;
  }
  nav #uberbar #logo {
    /* Company Logo text in header */
    float: none;
    padding: 0px;
    text-align: center;
  }
  nav .button {
    background-color: hsl(278, 68%, 29%);
    margin: 12px 10px 5px 0px;
    padding: 5px;
    width: auto;
    border-radius: 5px;
    border-top: 4px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .form .form-group .input-group {
    padding-left: 0px;
    padding-right: 0px;
    float: none;
  }
  .form .form-group .input-group:first-of-type {
    padding-left: 0px;
    padding-right: 0px;
    float: none;
  }
  .form .form-group .input-group:last-of-type {
    padding-left: 0px;
    padding-right: 0px;
    float: none;
  }
  .form .form-group label {
    width: 100%;
  }
  .dot {
    display: none;
  }
}
html {
  scroll-snap-type: y mandatory;
  scroll-padding-top: 55px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 55px);
  width: 100%;
  background-color: #B33791;
  font-family: "Poppins", sans-serif;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
  z-index: 1;
}
.hero-section .hero-bg-diagonal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 95%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.7)), url("../images/hero-image.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  clip-path: polygon(0 0, 100% 0, 100% 82%, 0 100%);
  z-index: -1;
}
.hero-section .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px 0;
  max-width: 900px;
  z-index: 2;
}
.hero-section .hero-content .hero-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
  backdrop-filter: blur(5px);
}
.hero-section .hero-content .hero-title-main {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.hero-section .hero-content .hero-title-main span {
  color: #FEC5F6;
}
.hero-section .hero-content .hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0 0 40px;
  max-width: 700px;
  font-weight: 400;
}
.hero-section .hero-content .hero-actions .btn-primary {
  display: inline-block;
  background-color: #ffffff;
  color: #B33791;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.hero-section .hero-content .hero-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.hero-section .hero-centerpiece {
  position: relative;
  z-index: 3;
  width: 90%;
  max-width: 800px;
  max-height: 40vh;
  object-fit: contain;
  margin-top: 40px;
  margin-bottom: 2rem;
  border-radius: 12px;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
}

.welcome-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 60px 8%;
  width: 100%;
  min-height: calc(100vh - 55px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
}
.welcome-section .welcome-visual {
  justify-self: end;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4/5;
  background-color: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.welcome-section .welcome-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.welcome-section .welcome-content {
  justify-self: start;
  width: 100%;
  max-width: 500px;
}
.welcome-section .welcome-content .welcome-badge {
  display: inline-block;
  background-color: #DB8DD0;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 12px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border-radius: 2px;
}
.welcome-section .welcome-content .welcome-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.3;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
.welcome-section .welcome-content .welcome-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
  margin: 0;
}

.info-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: calc(100vh - 55px);
  background-color: #FEC5F6;
  padding: 60px 5%;
  font-family: "Poppins", sans-serif;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.info-section .info-header {
  text-align: center;
  margin-bottom: 60px;
}
.info-section .info-header .info-badge {
  display: inline-block;
  background-color: #B33791;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.info-section .info-header .info-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 24px;
}
.info-section .info-header .info-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.info-section .info-header .info-dots span {
  width: 6px;
  height: 6px;
  background-color: #B33791;
  border-radius: 50%;
  transform: rotate(45deg);
  border-radius: 1px;
}
.info-section .info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.info-section .info-grid .info-card {
  background: #ffffff;
  padding: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.info-section .info-grid .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}
.info-section .info-grid .info-card .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.info-section .info-grid .info-card .card-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 32px;
}
.info-section .info-grid .info-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #1e293b;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  border: 1px solid #e2e8f0;
  padding: 10px 20px;
  transition: all 0.2s ease;
  margin-top: auto;
  align-self: flex-start;
}
.info-section .info-grid .info-card .card-link:hover {
  background-color: #F9FAFB;
  border-color: #1e293b;
}

@media screen and (max-width: 900px) {
  .hero-section {
    flex-direction: column;
  }
  .hero-section .hero-content {
    padding: 60px 20px;
  }
  .hero-section .hero-content .hero-title-main {
    font-size: 1.75rem;
  }
  .hero-section .hero-image {
    min-height: 400px;
  }
  .welcome-section {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    gap: 40px;
    text-align: center;
  }
  .welcome-section .welcome-visual {
    max-width: 400px;
    aspect-ratio: 16/9;
  }
  .welcome-section .welcome-content .welcome-title {
    font-size: 1.8rem;
  }
  .info-section {
    padding: 60px 20px;
    min-height: auto;
  }
}
@media screen and (max-width: 600px) {
  .info-section .info-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.about-hero-section, .about-desc-section, .about-visimisi-section, .about-org-section {
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.about-hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 45vh;
  background-color: #B33791;
  background-image: linear-gradient(rgba(179, 55, 145, 0.6), rgba(0, 0, 0, 0.85)), url("../images/FKIP.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  text-align: center;
  z-index: 1;
  padding-top: 55px;
}
.about-hero-section .bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15vw;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  z-index: -1;
  letter-spacing: 5px;
}
.about-hero-section .hero-content {
  z-index: 2;
  color: #ffffff;
}
.about-hero-section .hero-content .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.about-hero-section .hero-content .hero-subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 15px;
}

.about-desc-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 80px 8%;
  background-color: #ffffff;
  width: 100%;
}
.about-desc-section .desc-content {
  justify-self: end;
  width: 100%;
  max-width: 500px;
}
.about-desc-section .desc-content .badge {
  display: inline-block;
  background-color: #B33791;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-desc-section .desc-content .title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 20px;
}
.about-desc-section .desc-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 15px;
}
.about-desc-section .desc-visual {
  justify-self: start;
  width: 100%;
  max-width: 550px;
  aspect-ratio: 4/3;
  background-color: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.about-desc-section .desc-visual .about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header .badge {
  display: inline-block;
  background-color: #B33791;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-header .title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 15px;
  text-transform: uppercase;
}
.section-header .dots-separator {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.section-header .dots-separator span {
  width: 6px;
  height: 6px;
  background-color: #B33791;
  transform: rotate(45deg);
}

.about-visimisi-section {
  padding: 80px 8%;
  background-color: #fafbfd;
}
.about-visimisi-section .cards-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.about-visimisi-section .cards-container .vm-card {
  flex: 1 1 400px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 40px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}
.about-visimisi-section .cards-container .vm-card .card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0;
}
.about-visimisi-section .cards-container .vm-card .card-subtitle {
  font-size: 0.95rem;
  color: #64748b;
  margin: 5px 0 25px;
}
.about-visimisi-section .cards-container .vm-card .card-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
}
.about-visimisi-section .cards-container .vm-card .card-list {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  padding-left: 20px;
  margin-top: 0;
}
.about-visimisi-section .cards-container .vm-card .card-list li {
  margin-bottom: 10px;
}
.about-visimisi-section .cards-container .vm-card .card-list li:last-child {
  margin-bottom: 0;
}
.about-visimisi-section .cards-container .vm-card .corner-acc {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 0;
  height: 0;
  border-bottom: 60px solid #f9f0f6;
  border-left: 60px solid transparent;
}
.about-visimisi-section .cards-container .vm-card::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid rgba(179, 55, 145, 0.1);
  z-index: -1;
}

.about-org-section {
  padding: 80px 8%;
  background-color: #ffffff;
}
.about-org-section .modern-org-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 20px;
  font-family: "Poppins", sans-serif;
}
.about-org-section .modern-org-chart .org-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 25px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  position: relative;
  border-top: 5px solid #B33791;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 2;
}
.about-org-section .modern-org-chart .org-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.about-org-section .modern-org-chart .org-card.primary {
  border-color: #B33791;
}
.about-org-section .modern-org-chart .org-card.secondary {
  border-color: #C562AF;
}
.about-org-section .modern-org-chart .org-card.tertiary {
  border-color: #DB8DD0;
}
.about-org-section .modern-org-chart .org-card.quaternary {
  border-color: #FEC5F6;
}
.about-org-section .modern-org-chart .org-card.staff {
  border-color: #64748b;
  max-width: 320px;
  padding: 20px;
}
.about-org-section .modern-org-chart .org-card .org-avatar {
  width: 85px;
  height: 85px;
  margin: -50px auto 15px;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.about-org-section .modern-org-chart .org-card .org-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.about-org-section .modern-org-chart .org-card .org-avatar-small {
  width: 65px;
  height: 65px;
  margin: -40px auto 15px;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.about-org-section .modern-org-chart .org-card .org-avatar-small img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.about-org-section .modern-org-chart .org-card .org-details .org-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 8px;
}
.about-org-section .modern-org-chart .org-card .org-details .org-role {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #B33791;
  background: rgba(179, 55, 145, 0.1);
  padding: 5px 15px;
  border-radius: 20px;
}
.about-org-section .modern-org-chart .org-card .org-details .org-role.staff-role {
  background: rgba(100, 116, 139, 0.1);
  color: #64748b;
}
.about-org-section .modern-org-chart .org-card .org-details .org-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  text-align: left;
  background: #f8fafc;
  border-radius: 8px;
  padding: 15px;
}
.about-org-section .modern-org-chart .org-card .org-details .org-list li {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.about-org-section .modern-org-chart .org-card .org-details .org-list li:last-child {
  margin-bottom: 0;
}
.about-org-section .modern-org-chart .org-card .org-details .org-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C562AF;
}
.about-org-section .modern-org-chart .org-connector {
  width: 2px;
  height: 40px;
  background: #cbd5e1;
  z-index: 1;
}
.about-org-section .modern-org-chart .org-staff-group {
  display: flex;
  justify-content: center;
  gap: 40px;
  width: 100%;
  position: relative;
  padding-top: 30px;
}
.about-org-section .modern-org-chart .org-staff-group .org-card.staff {
  position: relative;
}
.about-org-section .modern-org-chart .org-staff-group .org-card.staff::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  width: 2px;
  height: 30px;
  background: #cbd5e1;
  transform: translateX(-50%);
}
.about-org-section .modern-org-chart .org-staff-group .org-card.staff::after {
  content: "";
  position: absolute;
  top: -30px;
  width: calc(50% + 20px);
  height: 2px;
  background: #cbd5e1;
}
.about-org-section .modern-org-chart .org-staff-group .org-card.staff:first-child::after {
  left: 50%;
}
.about-org-section .modern-org-chart .org-staff-group .org-card.staff:last-child::after {
  right: 50%;
}

.about-info-section {
  padding: 80px 8%;
  background-color: #fafbfd;
}
.about-info-section .info-content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
.about-info-section .info-content-wrapper .info-text-block {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  text-align: justify;
  margin-bottom: 40px;
}
.about-info-section .info-content-wrapper .info-text-block.highlight {
  background: #ffffff;
  border-left: 5px solid #B33791;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  margin-top: 50px;
}
.about-info-section .info-content-wrapper .info-text-block.highlight h3 {
  color: #1e293b;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.4rem;
}
.about-info-section .info-content-wrapper .info-text-block.highlight p {
  margin-bottom: 15px;
}
.about-info-section .info-content-wrapper .info-text-block.highlight p:last-child {
  margin-bottom: 0;
}
.about-info-section .info-content-wrapper .info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.about-info-section .info-content-wrapper .info-grid .info-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: transform 0.3s ease;
  border-bottom: 3px solid transparent;
}
.about-info-section .info-content-wrapper .info-grid .info-card:hover {
  transform: translateY(-5px);
  border-bottom-color: #B33791;
}
.about-info-section .info-content-wrapper .info-grid .info-card .card-icon {
  width: 60px;
  height: 60px;
  background: rgba(179, 55, 145, 0.1);
  color: #B33791;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.about-info-section .info-content-wrapper .info-grid .info-card .card-icon svg {
  width: 30px;
  height: 30px;
}
.about-info-section .info-content-wrapper .info-grid .info-card h3 {
  font-size: 1.2rem;
  color: #1e293b;
  margin-bottom: 15px;
}
.about-info-section .info-content-wrapper .info-grid .info-card p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .about-hero-section .hero-content .hero-title {
    font-size: 2.5rem;
  }
  .about-hero-section .bg-text {
    font-size: 24vw;
  }
  .about-desc-section {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 50px 5%;
    gap: 30px;
  }
  .about-desc-section .desc-content {
    justify-self: center;
    order: 2;
  }
  .about-desc-section .desc-visual {
    justify-self: center;
    order: 1;
  }
  .about-org-section .org-container {
    justify-content: flex-start;
  }
}
.info-hero-section, .info-main-section {
  font-family: "Poppins", sans-serif;
}

.info-hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 45vh;
  background-color: #B33791;
  background-image: linear-gradient(rgba(179, 55, 145, 0.6), rgba(0, 0, 0, 0.85)), url("../images/FKIP.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  text-align: center;
  z-index: 1;
  padding-top: 55px;
}
.info-hero-section .bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15vw;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  z-index: -1;
  letter-spacing: 5px;
}
.info-hero-section .hero-content {
  z-index: 2;
  color: #ffffff;
}
.info-hero-section .hero-content .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.info-hero-section .hero-content .hero-subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 15px;
}

.info-main-section {
  background-color: #ffffff;
  padding: 80px 5%;
}
.info-main-section .info-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}
.info-main-section .info-content-left {
  flex: 1 1 65%;
  min-width: 300px;
}
.info-main-section .info-content-left .post-card {
  background-color: #fafbfd;
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 4px;
}
.info-main-section .info-content-left .post-card .post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}
.info-main-section .info-content-left .post-card .post-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #64748b;
}
.info-main-section .info-content-left .post-card .post-meta .meta-item .meta-icon {
  width: 14px;
  height: 14px;
  color: #B33791;
}
.info-main-section .info-content-left .post-card .post-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 15px;
  line-height: 1.3;
}
.info-main-section .info-content-left .post-card .post-excerpt {
  font-size: 1rem;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 25px;
}
.info-main-section .info-content-left .post-card .post-read-more {
  display: inline-block;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  width: 100%;
  text-decoration: none;
  color: #B33791;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: color 0.2s ease;
}
.info-main-section .info-content-left .post-card .post-read-more:hover {
  color: #C562AF;
}
.info-main-section .info-content-left .info-pagination {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}
.info-main-section .info-content-left .info-pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #f1f5f9;
  color: #1e293b;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.info-main-section .info-content-left .info-pagination .page-link.active, .info-main-section .info-content-left .info-pagination .page-link:hover {
  background-color: #B33791;
  color: #ffffff;
}
.info-main-section .info-content-left .info-pagination .page-link.next {
  font-size: 1.2rem;
}
.info-main-section .info-sidebar-right {
  flex: 1 1 30%;
  min-width: 250px;
}
.info-main-section .info-sidebar-right .sidebar-widget {
  background-color: #fafbfc;
  padding: 30px;
  margin-bottom: 40px;
  border-radius: 4px;
}
.info-main-section .info-sidebar-right .sidebar-widget .widget-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.info-main-section .info-sidebar-right .sidebar-widget .recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-main-section .info-sidebar-right .sidebar-widget .recent-posts-list .recent-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.info-main-section .info-sidebar-right .sidebar-widget .recent-posts-list .recent-item .recent-thumb {
  width: 70px;
  height: 70px;
  background-color: #e2e8f0;
  flex-shrink: 0;
  border-radius: 4px;
}
.info-main-section .info-sidebar-right .sidebar-widget .recent-posts-list .recent-item .recent-info .recent-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 5px;
}
.info-main-section .info-sidebar-right .sidebar-widget .recent-posts-list .recent-item .recent-info .recent-meta .meta-icon {
  width: 12px;
  height: 12px;
}
.info-main-section .info-sidebar-right .sidebar-widget .recent-posts-list .recent-item .recent-info .recent-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.4;
  cursor: pointer;
  transition: color 0.2s;
}
.info-main-section .info-sidebar-right .sidebar-widget .recent-posts-list .recent-item .recent-info .recent-title:hover {
  color: #B33791;
}
.info-main-section .info-sidebar-right .sidebar-widget .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.info-main-section .info-sidebar-right .sidebar-widget .gallery-grid .gallery-item {
  aspect-ratio: 1;
  background-color: #e2e8f0;
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s;
  cursor: pointer;
}
.info-main-section .info-sidebar-right .sidebar-widget .gallery-grid .gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
  .info-hero-section .hero-content .hero-title {
    font-size: 2.5rem;
  }
  .info-hero-section .bg-text {
    font-size: 24vw;
  }
  .info-main-section .info-content-left .post-card {
    padding: 25px;
  }
  .info-main-section .info-content-left .post-card .post-title {
    font-size: 1.4rem;
  }
}
.info-main-section .info-content-left .post-card .post-meta .meta-item.meta-tag {
  background: #f0e3fc;
  color: #7c047c;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
}
.info-main-section .info-content-left .empty-info-state {
  text-align: center;
  padding: 60px 20px;
}
.info-main-section .info-content-left .empty-info-state .empty-info-icon {
  width: 80px;
  height: 80px;
  background: #f0e3fc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.info-main-section .info-content-left .empty-info-state .empty-info-title {
  color: #475569;
  font-size: 18px;
  margin: 0 0 8px;
}
.info-main-section .info-content-left .empty-info-state .empty-info-desc {
  color: #94a3b8;
  font-size: 14px;
  margin: 0;
}
.info-main-section .info-sidebar-right .sidebar-widget .recent-posts-list .recent-item .recent-thumb.recent-thumb-bg {
  background-size: cover;
  background-position: center;
}
.info-main-section .info-sidebar-right .sidebar-widget .recent-posts-list .recent-item .recent-thumb.recent-thumb-placeholder {
  background: #f0e3fc;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-main-section .info-sidebar-right .sidebar-widget .recent-posts-list .recent-item .recent-info .recent-title .recent-link {
  text-decoration: none;
  color: inherit;
}
.info-main-section .info-sidebar-right .sidebar-widget .recent-posts-list .empty-info-text {
  color: #94a3b8;
  font-size: 13px;
}

.gallery-hero-section, .gallery-main-section {
  font-family: "Poppins", sans-serif;
}

.gallery-hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 45vh;
  background-color: #B33791;
  background-image: linear-gradient(rgba(179, 55, 145, 0.6), rgba(0, 0, 0, 0.85)), url("../images/FKIP.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  text-align: center;
  z-index: 1;
  padding-top: 55px;
}
.gallery-hero-section .bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15vw;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  z-index: -1;
  letter-spacing: 5px;
}
.gallery-hero-section .hero-content {
  z-index: 2;
  color: #ffffff;
}
.gallery-hero-section .hero-content .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.gallery-hero-section .hero-content .hero-subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 15px;
}

.gallery-main-section {
  background-color: #F9FAFB;
  padding: 80px 5%;
}
.gallery-main-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.gallery-main-section .section-header .badge {
  display: inline-block;
  background-color: #B33791;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.gallery-main-section .section-header .title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 15px;
  text-transform: uppercase;
}
.gallery-main-section .section-header .dots-separator {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.gallery-main-section .section-header .dots-separator span {
  width: 6px;
  height: 6px;
  background-color: #B33791;
  transform: rotate(45deg);
}
.gallery-main-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-main-section .gallery-grid .gallery-item-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background-color: #e2e8f0;
  overflow: hidden;
}
.gallery-main-section .gallery-grid .gallery-item-wrapper .gallery-image-placeholder {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.gallery-main-section .gallery-grid .gallery-item-wrapper .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(179, 55, 145, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-main-section .gallery-grid .gallery-item-wrapper .gallery-overlay .view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background-color: #ffffff;
  border-radius: 2px;
  color: #B33791;
  transform: translateY(20px);
  transition: transform 0.3s ease, background-color 0.2s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.gallery-main-section .gallery-grid .gallery-item-wrapper .gallery-overlay .view-btn svg {
  width: 20px;
  height: 20px;
}
.gallery-main-section .gallery-grid .gallery-item-wrapper .gallery-overlay .view-btn:hover {
  background-color: #F9FAFB;
}
.gallery-main-section .gallery-grid .gallery-item-wrapper:hover .gallery-overlay {
  opacity: 1;
}
.gallery-main-section .gallery-grid .gallery-item-wrapper:hover .gallery-overlay .view-btn {
  transform: translateY(0);
}

@media screen and (max-width: 900px) {
  .gallery-main-section .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .gallery-hero-section .hero-content .hero-title {
    font-size: 2.5rem;
  }
  .gallery-hero-section .bg-text {
    font-size: 24vw;
  }
  .gallery-main-section .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.gallery-main-section .clickable-gallery-item {
  cursor: pointer;
}
.gallery-main-section .pagination-margin-top {
  margin-top: 40px;
}
.gallery-main-section .empty-gallery-state {
  text-align: center;
  padding: 80px 20px;
}
.gallery-main-section .empty-gallery-icon {
  width: 90px;
  height: 90px;
  background: #f0e3fc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.gallery-main-section .empty-gallery-title {
  color: #475569;
  font-size: 18px;
  margin: 0 0 8px;
}
.gallery-main-section .empty-gallery-desc {
  color: #94a3b8;
  font-size: 14px;
  margin: 0;
}

.gallery-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  box-sizing: border-box;
}

.gallery-lightbox-close {
  position: fixed;
  top: 16px;
  right: 20px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
  z-index: 100000;
}
.gallery-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.gallery-lightbox-img-wrapper {
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: lbFadeIn 0.25s ease;
}

.gallery-lightbox-caption {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  text-align: center;
  margin: 16px 0 0;
  max-width: 600px;
  line-height: 1.6;
  padding: 0 16px;
}

.gallery-item-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: #f0e3fc;
}

.gallery-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-item-wrapper:hover .gallery-real-img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(168, 5, 168, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item-wrapper:hover .gallery-overlay {
  opacity: 1;
}

.view-btn svg {
  width: 36px;
  height: 36px;
  color: white;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

@keyframes lbFadeIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.contact-hero-section, .contact-main-section {
  font-family: "Poppins", sans-serif;
}

.contact-hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 45vh;
  background-color: #B33791;
  background-image: linear-gradient(rgba(179, 55, 145, 0.6), rgba(0, 0, 0, 0.85)), url("../images/FKIP.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  text-align: center;
  z-index: 1;
  padding-top: 55px;
}
.contact-hero-section .bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15vw;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  z-index: -1;
  letter-spacing: 5px;
}
.contact-hero-section .hero-content {
  z-index: 2;
  color: #ffffff;
}
.contact-hero-section .hero-content .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.contact-hero-section .hero-content .hero-subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 15px;
}

.contact-main-section {
  background-color: #ffffff;
  padding: 80px 5%;
}
.contact-main-section .contact-wrapper {
  background-color: #FAFAFB;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px;
  border-radius: 4px;
}
.contact-main-section .contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.contact-main-section .contact-info-col {
  flex: 1;
  max-width: 800px;
  text-align: center;
}
.contact-main-section .contact-info-col .contact-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 25px;
}
.contact-main-section .contact-info-col .contact-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}
.contact-main-section .contact-info-col .contact-details-grid {
  margin-bottom: 40px;
}
.contact-main-section .contact-info-col .contact-details-grid .contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 15px 0;
}
.contact-main-section .contact-info-col .contact-details-grid .contact-item .icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  color: #B33791;
  flex-shrink: 0;
}
.contact-main-section .contact-info-col .contact-details-grid .contact-item .icon-circle svg {
  width: 18px;
  height: 18px;
}
.contact-main-section .contact-info-col .contact-details-grid .contact-item .item-text {
  display: flex;
  flex-direction: column;
}
.contact-main-section .contact-info-col .contact-details-grid .contact-item .item-text .label {
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 2px;
}
.contact-main-section .contact-info-col .contact-details-grid .contact-item .item-text .value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
}
.contact-main-section .contact-info-col .contact-details-grid .contact-item.full-width {
  justify-content: center;
}
.contact-main-section .contact-info-col .contact-details-grid .grid-divider {
  height: 1px;
  width: 100%;
  background-color: #e2e8f0;
  margin: 5px 0;
}
.contact-main-section .contact-info-col .contact-details-grid .grid-divider-bottom {
  height: 1px;
  width: 100%;
  background-color: #e2e8f0;
  margin-top: 5px;
}
.contact-main-section .contact-info-col .contact-details-grid .contact-row-split {
  display: flex;
  align-items: center;
}
.contact-main-section .contact-info-col .contact-details-grid .contact-row-split .split-half {
  flex: 1;
  padding: 20px 0;
}
.contact-main-section .contact-info-col .contact-details-grid .contact-row-split .has-border-left {
  border-left: 1px solid #e2e8f0;
  padding-left: 30px;
  margin-left: 10px;
}
.contact-main-section .contact-info-col .btn-primary-contact {
  display: inline-block;
  background-color: #923078;
  color: #ffffff;
  padding: 15px 35px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 2px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.2s;
}
.contact-main-section .contact-info-col .btn-primary-contact:hover {
  background-color: #B33791;
}

@media screen and (max-width: 900px) {
  .contact-main-section .contact-wrapper {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 600px) {
  .contact-hero-section .hero-content .hero-title {
    font-size: 2.5rem;
  }
  .contact-hero-section .bg-text {
    font-size: 20vw;
  }
  .contact-main-section .contact-wrapper {
    padding: 30px 15px;
  }
  .contact-main-section .contact-info-col .contact-details-grid .contact-row-split {
    flex-direction: column;
    align-items: center;
  }
  .contact-main-section .contact-info-col .contact-details-grid .contact-row-split .has-border-left {
    border-left: none;
    border-top: 1px solid #e2e8f0;
    padding-left: 0;
    margin-left: 0;
    padding-top: 20px;
    width: 100%;
  }
  .contact-main-section .contact-info-col .contact-details-grid .contact-item.full-width {
    justify-content: center;
  }
}
.detail-hero-section, .detail-main-section {
  font-family: "Poppins", sans-serif;
}

.detail-hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 45vh;
  background-color: #B33791;
  background-image: linear-gradient(rgba(179, 55, 145, 0.6), rgba(0, 0, 0, 0.85)), url("../images/FKIP.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  text-align: center;
  z-index: 1;
  padding-top: 55px;
  overflow: hidden;
}
.detail-hero-section .bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15vw;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  z-index: -1;
  letter-spacing: 5px;
}
.detail-hero-section .hero-content {
  z-index: 2;
  color: #ffffff;
}
.detail-hero-section .hero-content .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.detail-hero-section .hero-content .hero-subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 15px;
}

.detail-main-section {
  background-color: #ffffff;
  padding: 80px 5%;
}
.detail-main-section .detail-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}
.detail-main-section .detail-content-left {
  flex: 1 1 65%;
  min-width: 300px;
}
.detail-main-section .detail-content-left .full-article .article-hero-image {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #e2e8f0;
  border-radius: 4px;
  margin-bottom: 25px;
}
.detail-main-section .detail-content-left .full-article .article-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}
.detail-main-section .detail-content-left .full-article .article-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #64748b;
}
.detail-main-section .detail-content-left .full-article .article-meta .meta-item .meta-icon {
  width: 14px;
  height: 14px;
  color: #B33791;
}
.detail-main-section .detail-content-left .full-article .article-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 25px;
  line-height: 1.3;
  text-transform: uppercase;
}
.detail-main-section .detail-content-left .full-article .article-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 20px;
}
.detail-main-section .detail-content-left .full-article .article-body p:last-child {
  margin-bottom: 0;
}
.detail-main-section .detail-content-left .full-article .article-tags {
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.95rem;
}
.detail-main-section .detail-content-left .full-article .article-tags .tag-label {
  font-weight: 800;
  color: #1e293b;
  margin-right: 10px;
}
.detail-main-section .detail-content-left .full-article .article-tags .tag-values {
  color: #64748b;
}
.detail-main-section .detail-sidebar-right {
  flex: 1 1 30%;
  min-width: 250px;
}
.detail-main-section .detail-sidebar-right .sidebar-widget {
  background-color: #fafbfc;
  padding: 30px;
  margin-bottom: 40px;
  border-radius: 4px;
}
.detail-main-section .detail-sidebar-right .sidebar-widget .widget-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.detail-main-section .detail-sidebar-right .sidebar-widget .recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.detail-main-section .detail-sidebar-right .sidebar-widget .recent-posts-list .recent-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.detail-main-section .detail-sidebar-right .sidebar-widget .recent-posts-list .recent-item .recent-thumb {
  width: 70px;
  height: 70px;
  background-color: #e2e8f0;
  flex-shrink: 0;
  border-radius: 4px;
}
.detail-main-section .detail-sidebar-right .sidebar-widget .recent-posts-list .recent-item .recent-info .recent-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 5px;
}
.detail-main-section .detail-sidebar-right .sidebar-widget .recent-posts-list .recent-item .recent-info .recent-meta .meta-icon {
  width: 12px;
  height: 12px;
}
.detail-main-section .detail-sidebar-right .sidebar-widget .recent-posts-list .recent-item .recent-info .recent-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.4;
  cursor: pointer;
  transition: color 0.2s;
}
.detail-main-section .detail-sidebar-right .sidebar-widget .recent-posts-list .recent-item .recent-info .recent-title:hover {
  color: #B33791;
}
.detail-main-section .detail-sidebar-right .sidebar-widget .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.detail-main-section .detail-sidebar-right .sidebar-widget .gallery-grid .gallery-item {
  aspect-ratio: 1;
  background-color: #e2e8f0;
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s;
  cursor: pointer;
}
.detail-main-section .detail-sidebar-right .sidebar-widget .gallery-grid .gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
  .detail-hero-section .hero-content .hero-title {
    font-size: 2.5rem;
  }
  .detail-hero-section .bg-text {
    font-size: 24vw;
  }
  .detail-main-section .detail-content-left .full-article .article-title {
    font-size: 1.6rem;
  }
}
.detail-main-section .detail-content-left .full-article .article-hero-image.article-hero-custom {
  background: none;
  padding: 0;
  margin-bottom: 24px;
}
.detail-main-section .detail-content-left .full-article .article-hero-img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.detail-main-section .detail-content-left .full-article .article-meta .meta-item.meta-tag {
  background: #f0e3fc;
  color: #7c047c;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
}
.detail-main-section .detail-content-left .back-link-wrapper {
  margin-top: 30px;
}
.detail-main-section .detail-content-left .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #a805a8;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}
.detail-main-section .detail-content-left .back-link:hover {
  gap: 10px;
}
.detail-main-section .detail-sidebar-right .sidebar-widget .recent-posts-list .recent-item .recent-thumb.recent-thumb-bg {
  background-size: cover;
  background-position: center;
}
.detail-main-section .detail-sidebar-right .sidebar-widget .recent-posts-list .recent-item .recent-thumb.recent-thumb-placeholder {
  background: #f0e3fc;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-main-section .detail-sidebar-right .sidebar-widget .recent-posts-list .recent-item .recent-info .recent-title .recent-link {
  text-decoration: none;
  color: inherit;
}
.detail-main-section .detail-sidebar-right .sidebar-widget .recent-posts-list .empty-info {
  color: #94a3b8;
  font-size: 13px;
}

.pendaftaran-wrapper {
  font-family: "Poppins", sans-serif;
  background-color: transparent;
  padding: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.pendaftaran-wrapper .pendaftaran-container {
  background: #ffffff;
  width: 100%;
  max-width: 100%;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.pendaftaran-wrapper .card-header {
  margin-bottom: 30px;
  padding: 30px 30px 0 30px;
}
.pendaftaran-wrapper .card-header .card-title {
  font-size: 20px;
  color: #a805a8;
  font-weight: 700;
  margin: 0 0 10px 0;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0e3fc;
  text-transform: capitalize;
  letter-spacing: normal;
}
.pendaftaran-wrapper .card-header .card-subtitle {
  font-size: 14px;
  color: #777777;
  margin: 10px 0 0 0;
  line-height: 1.4;
  font-weight: 400;
  opacity: 1;
}
.pendaftaran-wrapper .form-body {
  padding: 30px;
}
.pendaftaran-wrapper .form-body .form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.pendaftaran-wrapper .form-body .form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.pendaftaran-wrapper .form-body .form-group label .required {
  color: #B33791;
  margin-left: 4px;
}
.pendaftaran-wrapper .form-body .form-group .input-control {
  width: 50%;
  height: 35px;
  padding: 4px 12px;
  font-size: 14px;
  font-family: inherit;
  color: #555;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.pendaftaran-wrapper .form-body .form-group .input-control:focus {
  outline: none;
  border-color: #B33791;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(179, 55, 145, 0.3);
}
.pendaftaran-wrapper .form-body .form-group .input-control::placeholder {
  color: #999;
}
.pendaftaran-wrapper .form-body .form-group select.input-control {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 30px;
}
.pendaftaran-wrapper .form-body .form-group select.input-control option {
  padding: 6px;
  font-size: 14px;
}
.pendaftaran-wrapper .form-body .form-group .help-text {
  font-size: 12px;
  color: #64748b;
  margin-top: 5px;
}
.pendaftaran-wrapper .form-body .form-actions {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
  background-color: #f5f5f5;
  padding: 15px;
  border-radius: 0 0 2px 2px;
  margin: 20px -30px -30px -30px;
}
.pendaftaran-wrapper .form-body .form-actions .btn-save {
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  font-size: 15px;
  background: #a805a8;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(168, 5, 168, 0.2);
}
.pendaftaran-wrapper .form-body .form-actions .btn-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(168, 5, 168, 0.3);
  background: rgb(143.2369942197, 4.2630057803, 143.2369942197);
}

@media screen and (max-width: 768px) {
  .pendaftaran-wrapper {
    padding: 10px;
  }
  .pendaftaran-wrapper .card-header {
    padding: 20px 20px 0 20px;
  }
  .pendaftaran-wrapper .card-header .card-title {
    font-size: 18px;
  }
  .pendaftaran-wrapper .form-body {
    padding: 20px;
  }
  .pendaftaran-wrapper .form-body .form-group .input-control {
    width: 100%;
  }
  .pendaftaran-wrapper .form-body .form-actions {
    margin: 20px -20px -20px -20px;
    justify-content: center;
  }
  .pendaftaran-wrapper .form-body .form-actions .btn-save {
    width: 100%;
  }
}
.laporan-container {
  padding: 10px 0;
  font-family: "Poppins", "Inter", sans-serif;
  max-width: 1200px;
  margin: 0 auto;
}
.laporan-container .laporan-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
  padding: 30px;
  border: 1px solid #f9f9f9;
}
@media screen and (max-width: 768px) {
  .laporan-container .laporan-card {
    padding: 20px;
  }
}
.laporan-container .laporan-card .card-header {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0e3fc;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .laporan-container .laporan-card .card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
.laporan-container .laporan-card .card-header .card-title {
  font-size: 20px;
  color: #a805a8;
  font-weight: 700;
  margin: 0;
}
.laporan-container .laporan-card .card-header .btn-save {
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  font-size: 15px;
  background: #a805a8;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(168, 5, 168, 0.2);
}
.laporan-container .laporan-card .card-header .btn-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(168, 5, 168, 0.3);
  background: rgb(143.2369942197, 4.2630057803, 143.2369942197);
}
@media screen and (max-width: 768px) {
  .laporan-container .laporan-card .card-header .btn-save {
    width: 100%;
  }
}
.laporan-container .upload-panel-collapse {
  display: none;
  background: #fff8fc;
  border: 1px dashed #e8cce3;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
  animation: fadeInDown 0.3s ease;
}
.laporan-container .upload-panel-collapse.active {
  display: block;
}
.laporan-container .upload-panel-collapse .laporan-form .form-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .laporan-container .upload-panel-collapse .laporan-form .form-row {
    flex-direction: column;
    gap: 0;
  }
}
.laporan-container .upload-panel-collapse .laporan-form .form-group-modern {
  margin-bottom: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.laporan-container .upload-panel-collapse .laporan-form .form-group-modern.checkbox-group {
  justify-content: center;
}
.laporan-container .upload-panel-collapse .laporan-form .form-group-modern.checkbox-group label {
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  .laporan-container .upload-panel-collapse .laporan-form .form-group-modern.checkbox-group {
    padding-top: 5px !important;
    margin-bottom: 25px;
  }
}
.laporan-container .upload-panel-collapse .laporan-form .form-group-modern label {
  font-size: 13px;
  color: #333333;
  font-weight: 600;
  margin-bottom: 8px;
}
.laporan-container .upload-panel-collapse .laporan-form .form-group-modern label .required {
  color: #e74c3c;
  margin-left: 3px;
}
.laporan-container .upload-panel-collapse .laporan-form .form-group-modern .input-control {
  width: 100%;
  height: 38px;
  padding: 8px 12px;
  font-size: 14px;
  color: #555;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.laporan-container .upload-panel-collapse .laporan-form .form-group-modern .input-control:focus {
  border-color: #a805a8;
  outline: none;
  box-shadow: 0 0 0 3px rgba(168, 5, 168, 0.1);
}
.laporan-container .upload-panel-collapse .laporan-form .form-group-modern select.input-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.laporan-container .upload-panel-collapse .laporan-form .form-group-modern .file-input {
  padding: 6px;
  height: auto;
  border: 1px solid #ddd;
}
.laporan-container .upload-panel-collapse .laporan-form .form-group-modern .help-text {
  font-size: 12px;
  color: #777777;
  margin-top: 5px;
}
.laporan-container .upload-panel-collapse .laporan-form .form-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  background-color: #f5f5f5;
  padding: 15px;
  border-radius: 0 0 8px 8px;
  margin: 20px -25px -25px -25px;
}
.laporan-container .upload-panel-collapse .laporan-form .form-actions .btn-save {
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  font-size: 15px;
  background: #a805a8;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(168, 5, 168, 0.2);
}
.laporan-container .upload-panel-collapse .laporan-form .form-actions .btn-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(168, 5, 168, 0.3);
  background: rgb(143.2369942197, 4.2630057803, 143.2369942197);
}
.laporan-container .upload-panel-collapse .laporan-form .form-actions .btn-cancel-modal {
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-weight: 600;
  font-size: 15px;
  background: #ffffff;
  color: #555;
  cursor: pointer;
  transition: all 0.2s ease;
}
.laporan-container .upload-panel-collapse .laporan-form .form-actions .btn-cancel-modal:hover {
  background: #f1f1f1;
}
@media screen and (max-width: 768px) {
  .laporan-container .upload-panel-collapse .laporan-form .form-actions {
    justify-content: center;
  }
  .laporan-container .upload-panel-collapse .laporan-form .form-actions button {
    width: 100%;
  }
}
.laporan-container .report-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.laporan-container .report-list .report-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background: #fdfdfd;
  border: 1px solid #eaebec;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.laporan-container .report-list .report-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-color: #d1ccd8;
}
@media screen and (max-width: 768px) {
  .laporan-container .report-list .report-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
.laporan-container .report-list .report-item .report-icon {
  font-size: 28px;
  margin-right: 20px;
  display: flex;
  transition: transform 0.3s;
}
@media screen and (max-width: 768px) {
  .laporan-container .report-list .report-item .report-icon {
    display: none;
  }
}
.laporan-container .report-list .report-item:hover .report-icon {
  transform: scale(1.1);
}
.laporan-container .report-list .report-item .report-info {
  flex: 1;
}
.laporan-container .report-list .report-item .report-info .report-filename {
  font-size: 15px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 6px 0;
}
.laporan-container .report-list .report-item .report-info .report-filename .update-mark {
  color: #ef4444;
  font-size: 12px;
  font-weight: 400;
  margin-left: 5px;
  font-style: italic;
}
.laporan-container .report-list .report-item .report-info .report-status .badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.laporan-container .report-list .report-item .report-info .report-status .badge-read {
  background: #dcfce7;
  color: #166534;
}
.laporan-container .report-list .report-item .report-info .report-status .badge-unread {
  background: #fee2e2;
  color: #991b1b;
}
.laporan-container .report-list .report-item .report-info .report-status .badge-pending {
  background: #f3f4f6;
  color: #374151;
}
.laporan-container .report-list .report-item .report-actions {
  display: flex;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .laporan-container .report-list .report-item .report-actions {
    width: 100%;
    justify-content: flex-end;
  }
}
.laporan-container .report-list .report-item .report-actions .btn-action-laporan {
  padding: 8px 18px;
  height: 38px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.laporan-container .report-list .report-item .report-actions .btn-action-laporan.btn-download-outline {
  background: #f0e3fc;
  color: #a805a8;
  border: 1px solid transparent;
}
.laporan-container .report-list .report-item .report-actions .btn-action-laporan.btn-download-outline:hover {
  background: #a805a8;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(168, 5, 168, 0.15);
}
.laporan-container .report-list .report-item .report-actions .btn-action-laporan.btn-response-primary {
  background: #a805a8;
  color: white;
}
.laporan-container .report-list .report-item .report-actions .btn-action-laporan.btn-response-primary:hover {
  background: #8a0489;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(168, 5, 168, 0.2);
}
.laporan-container .report-list .report-item .report-actions .btn-action-laporan.btn-response-warning {
  background: #fff7ed;
  color: #ea580c;
  border: 1px solid #ffedd5;
}
.laporan-container .report-list .report-item .report-actions .btn-action-laporan.btn-response-warning:hover {
  background: #ea580c;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.15);
}
.laporan-container .report-list .report-item .report-actions .btn-action-laporan.btn-response-disabled {
  background: #f8fafc;
  color: #cbd5e1;
  cursor: not-allowed;
  border: 1px solid #f1f5f9;
}
.laporan-container .report-list .empty-state {
  text-align: center;
  padding: 40px;
  color: #777777;
  background: #f9f9f9;
  border-radius: 6px;
  border: 1px dashed #ddd;
}

.toast-notification {
  position: fixed;
  top: 24px;
  right: 24px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 16px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 99999;
  min-width: 300px;
  animation: slideInRight 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.toast-notification.hide {
  animation: slideOutRight 0.4s ease-in forwards;
}
.toast-notification.toast-success {
  border-left: 4px solid #10b981;
}
.toast-notification.toast-error {
  border-left: 4px solid #ef4444;
}
.toast-notification .toast-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.toast-notification .toast-icon svg {
  width: 18px;
  height: 18px;
}
.toast-notification.toast-success .toast-icon {
  background: #d1fae5;
  color: #10b981;
}
.toast-notification.toast-error .toast-icon {
  background: #fee2e2;
  color: #ef4444;
}
.toast-notification .toast-content .toast-title {
  font-weight: 600;
  color: #1f2937;
  font-size: 15px;
  margin-bottom: 4px;
}
.toast-notification .toast-content .toast-message {
  color: #6b7280;
  font-size: 13px;
  line-height: 1.4;
}
.toast-notification .toast-close {
  background: transparent;
  border: none;
  font-size: 22px;
  color: #9ca3af;
  cursor: pointer;
  margin-left: auto;
  padding: 0 4px;
  display: flex;
  align-items: center;
}
.toast-notification .toast-close:hover {
  color: #4b5563;
}

.alert-danger-modern {
  margin-bottom: 20px;
  padding: 12px 16px;
  background-color: #fef2f2;
  border: 1px solid #fee2e2;
  border-radius: 6px;
  color: #dc2626;
  font-size: 14px;
}

.modal-laporan-detail .modal-centered {
  max-width: 480px;
  width: 90%;
  margin: 0 auto;
}
.modal-laporan-detail .modal-centered .content {
  border-radius: 16px;
  border: none;
  background: #fff;
  display: flex;
  flex-direction: column;
  max-height: 85vh;
  width: 100%;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.modal-laporan-detail .modal-centered .content.animate {
  animation: galModalIn 0.3s ease;
}
.modal-laporan-detail .modal-centered .container {
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.modal-laporan-detail .modal-centered .container .title {
  background: #a805a8;
  color: white;
  padding: 18px 24px;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.modal-laporan-detail .modal-centered .container .title h1 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  padding: 0;
  border: none;
  color: white;
}
.modal-laporan-detail .modal-centered .container .title .close {
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  color: white;
  opacity: 0.8;
}
.modal-laporan-detail .modal-centered .container .title .close:hover {
  opacity: 1;
}
.modal-laporan-detail .modal-centered .container .field {
  padding: 24px;
  background: white;
  margin: 0;
  overflow-y: auto;
  flex-grow: 1;
}
.modal-laporan-detail .modal-centered .container .field .response-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
}
.modal-laporan-detail .modal-centered .container .field .response-box .response-header {
  margin-bottom: 15px;
  border-bottom: 1px dashed #cbd5e1;
  padding-bottom: 10px;
}
.modal-laporan-detail .modal-centered .container .field .response-box .response-header .label {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.modal-laporan-detail .modal-centered .container .field .response-box .response-header .value {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 4px;
}
.modal-laporan-detail .modal-centered .container .field .modal-footer {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
}
.modal-overlay .modal-content {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  width: 90%;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modal-overlay .modal-content .modal-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.modal-overlay .modal-content .modal-icon.error {
  background: #fee2e2;
  color: #dc2626;
}
.modal-overlay .modal-content .modal-icon svg {
  width: 24px;
  height: 24px;
}
.modal-overlay .modal-content .modal-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 8px;
}
.modal-overlay .modal-content .modal-message {
  font-size: 0.875rem;
  color: #4b5563;
  margin: 0 0 20px;
  line-height: 1.5;
}
.modal-overlay .modal-content .modal-btn {
  background: #a805a8;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}
.modal-overlay .modal-content .modal-btn:hover {
  background: rgb(143.2369942197, 4.2630057803, 143.2369942197);
}

.loading-wrapper {
  text-align: center;
  padding: 20px;
}
.loading-wrapper .loading-spinner {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #a805a8;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  margin: 0 auto 10px;
}
.loading-wrapper p {
  color: #64748b;
  font-size: 14px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes galModalIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media print {
  @page {
    .schedule-container {
      margin: 20mm;
      size: A4 landscape;
    }
  }
  .schedule-container body {
    width: 240mm;
    height: 297mm;
  }
  .schedule-container .content .header {
    font-size: 14pt;
    margin-top: 5mm;
    page-break-after: avoid;
  }
  .schedule-container .content .field {
    page-break-after: avoid;
  }
  .schedule-container #mainContent > div.content > div:nth-child(3),
  .schedule-container .header {
    display: none;
  }
}
.schedule-container .schedule-card {
  margin-bottom: 25px;
}
.schedule-container .schedule-card .card-header .card-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.schedule-container .schedule-card .card-header .card-title a {
  background: #10b981;
  color: white;
  border-radius: 6px;
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border: 1px solid #059669;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: opacity 0.2s;
  white-space: nowrap;
}
.schedule-container .schedule-card .card-header .card-title a:hover {
  opacity: 0.9;
}
.schedule-container .schedule-card .card-content-wrapper {
  margin-top: 20px;
}
.schedule-container .stat-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
@media screen and (max-width: 900px) {
  .schedule-container .stat-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .schedule-container .stat-summary-grid {
    grid-template-columns: 1fr;
  }
}
.schedule-container .stat-summary-grid .stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #faf5ff;
  border: 1px solid #f0e3fc;
  border-radius: 12px;
  padding: 16px 18px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.schedule-container .stat-summary-grid .stat-card:hover {
  box-shadow: 0 4px 16px rgba(168, 5, 168, 0.1);
  transform: translateY(-2px);
}
.schedule-container .stat-summary-grid .stat-card .stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.schedule-container .stat-summary-grid .stat-card .stat-icon--total {
  background: linear-gradient(135deg, #a805a8, #bd0fc1);
  color: #fff;
}
.schedule-container .stat-summary-grid .stat-card .stat-icon--year {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
}
.schedule-container .stat-summary-grid .stat-card .stat-icon--peak {
  background: linear-gradient(135deg, #b33791, #c562af);
  color: #fff;
}
.schedule-container .stat-summary-grid .stat-card .stat-icon--avg {
  background: linear-gradient(135deg, #db2777, #ec4899);
  color: #fff;
}
.schedule-container .stat-summary-grid .stat-card .stat-info .stat-value {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}
.schedule-container .stat-summary-grid .stat-card .stat-info .stat-label {
  font-size: 11.5px;
  color: #64748b;
  margin-top: 2px;
}
.schedule-container .chart-canvas-wrapper {
  position: relative;
  width: 100%;
  height: 320px;
  padding-top: 10px;
}
.schedule-container .chart-canvas-wrapper canvas {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.schedule-container .filter-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  align-items: end;
  margin-top: 20px;
}
.schedule-container .filter-form-grid .input-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}
.schedule-container .filter-form-grid .input-group label {
  font-size: 13px;
  font-weight: 600;
  color: #475569;
}
.schedule-container .filter-form-grid .input-group label .required {
  color: #ef4444;
  margin-left: 2px;
}
.schedule-container .filter-form-grid .input-group select, .schedule-container .filter-form-grid .input-group input {
  width: 100%;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  font-size: 14px;
  background: #fff;
  color: #334155;
  box-sizing: border-box;
}
.schedule-container .filter-form-grid .input-group.action-group {
  align-items: flex-start;
  justify-content: flex-end;
}
.schedule-container .filter-form-grid .input-group.action-group .btn-tampilkan {
  width: 100%;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #a805a8;
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.schedule-container .filter-form-grid .input-group.action-group .btn-tampilkan:hover {
  background: rgb(143.2369942197, 4.2630057803, 143.2369942197);
}
.schedule-container .modern-table th.text-center {
  text-align: center;
}
.schedule-container .modern-table td.text-center {
  text-align: center;
}
.schedule-container .modern-table td.text-muted {
  color: #64748b;
}
.schedule-container .modern-table td.font-medium {
  font-weight: 500;
}
.schedule-container .modern-table td .mahasiswa-info .name {
  font-weight: 700;
  color: #1e293b;
  font-size: 14px;
}
.schedule-container .modern-table td .mahasiswa-info .npm {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}
.schedule-container .modern-table td .prodi-text {
  color: #475569;
  font-size: 13px;
}
.schedule-container .modern-table td .kontak-info .phone {
  font-size: 13px;
  color: #1e293b;
}
.schedule-container .modern-table td .kontak-info .gender {
  font-size: 12px;
  color: #64748b;
}
.schedule-container .modern-table td .status-badge {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  border-style: solid;
  border-width: 1px;
  text-transform: uppercase;
}
.schedule-container .modern-table td .btn-view-detail {
  background: #a805a8;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 6px 14px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  transition: background 0.2s;
}
.schedule-container .modern-table td .btn-view-detail:hover {
  background: rgb(143.2369942197, 4.2630057803, 143.2369942197);
}
.schedule-container .empty-state {
  text-align: center;
  padding: 60px 20px;
}
.schedule-container .empty-state .icon-box {
  background: #f0e3fc;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.schedule-container .empty-state h3 {
  color: #333;
  font-weight: 700;
  margin-bottom: 10px;
}
.schedule-container .empty-state p {
  color: #64748b;
  max-width: 400px;
  margin: 0 auto;
}

.modal .modal-centered.modal-detail {
  max-width: 450px;
  width: 90%;
}
.modal .modal-centered.modal-detail .content {
  border-radius: 16px;
  border: none;
  overflow: hidden;
}
.modal .modal-centered.modal-detail .content .container {
  padding: 0;
}
.modal .modal-centered.modal-detail .content .title {
  background: #a805a8;
  color: white;
  padding: 20px;
  border-radius: 16px 16px 0 0;
}
.modal .modal-centered.modal-detail .content .title h1 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal .modal-centered.modal-detail .content .title h1 span.close {
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}
.modal .modal-centered.modal-detail .content .field {
  padding: 20px;
  background: white;
}

.validate-container .notif {
  margin-bottom: 20px;
}
.validate-container .validate-card {
  margin-bottom: 20px;
}
.validate-container .validate-card .card-header.flex-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.validate-container .validate-card .card-header .pagination-info {
  font-size: 13px;
  color: #64748b;
}
.validate-container .validate-card .filter-form .form-row .form-group-modern.align-end {
  justify-content: flex-end;
}
.validate-container .modern-table th.text-center, .validate-container .modern-table td.text-center {
  text-align: center;
}
.validate-container .modern-table td.text-muted {
  color: #64748b;
}
.validate-container .modern-table td.font-medium {
  font-weight: 500;
}
.validate-container .modern-table td.font-semibold {
  font-weight: 600;
  color: #1e293b;
}
.validate-container .modern-table td.text-slate-600 {
  color: #475569;
}
.validate-container .modern-table td.text-slate-500 {
  color: #64748b;
}
.validate-container #pagination-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.validate-container #pagination-nav button {
  min-width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0 8px;
}
.validate-container #pagination-nav button:hover {
  background: #f1f5f9;
  border-color: #a805a8;
  color: #a805a8;
}
.validate-container #pagination-nav button.active {
  background: #a805a8;
  color: #fff;
  border-color: #a805a8;
}
.validate-container #pagination-nav button:disabled {
  opacity: 0.4;
  cursor: default;
}
.validate-container #pagination-nav .dots {
  padding: 0 4px;
  color: #94a3b8;
  font-size: 14px;
  line-height: 36px;
}
.validate-container .empty-state {
  text-align: center;
  padding: 60px 20px;
}
.validate-container .empty-state .icon-box {
  background: #f0e3fc;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.validate-container .empty-state h3 {
  color: #1e293b;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}
.validate-container .empty-state p {
  color: #64748b;
  font-size: 14px;
}

.modal-overlay {
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal-overlay[style*="display: block"] {
  display: flex !important;
}
.modal-overlay .modal-modern-card {
  background-color: #fff;
  margin: auto;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 500px;
  max-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalSlideIn 0.3s ease-out;
}
.modal-overlay .modal-modern-card .modal-modern-header {
  flex-shrink: 0;
  background: #f8fafc;
  padding: 16px 24px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-overlay .modal-modern-card .modal-modern-header .modal-modern-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}
.modal-overlay .modal-modern-card .modal-modern-header .modal-modern-close {
  font-size: 24px;
  color: #94a3b8;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.modal-overlay .modal-modern-card .modal-modern-header .modal-modern-close:hover {
  color: #ef4444;
}
.modal-overlay .modal-modern-card .modal-modern-body {
  padding: 24px;
  overflow-y: auto;
  flex-grow: 1;
}
.modal-overlay .modal-modern-card .modal-modern-body .ajax-notif {
  padding: 12px;
  background: #dcfce7;
  color: #166534;
  border-radius: 6px;
  margin-bottom: 15px;
}
.modal-overlay .modal-modern-card .modal-modern-body .ajax-notif .btn-reload {
  margin-top: 10px;
  border: 1px solid #4f46e5;
}
.modal-overlay .modal-modern-card .modal-modern-body .modal-info-box {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
}
.modal-overlay .modal-modern-card .modal-modern-body .modal-info-box .info-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.modal-overlay .modal-modern-card .modal-modern-body .modal-info-box #dta-mhs {
  margin-top: 12px;
}
.modal-overlay .modal-modern-card .modal-modern-body .modal-info-box #dta-mhs .info-group {
  margin-bottom: 12px;
}
.modal-overlay .modal-modern-card .modal-modern-body .modal-info-box #dta-mhs .info-group:last-child {
  margin-bottom: 0;
}
.modal-overlay .modal-modern-card .modal-modern-body .modal-info-box #dta-mhs .info-group span {
  color: #64748b;
  font-size: 13px;
  display: block;
  margin-bottom: 2px;
}
.modal-overlay .modal-modern-card .modal-modern-body .modal-info-box #dta-mhs .info-group strong {
  font-size: 16px;
  color: #0f172a;
}
.modal-overlay .modal-modern-card .modal-modern-body .modal-info-box #dta-mhs .info-group .btn-download {
  color: #B33791;
  text-decoration: none;
  font-weight: 600;
  background: #fdf2f8;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
  border: 1px solid #fbcfe8;
}
.modal-overlay .modal-modern-card .modal-modern-body .modal-info-box #dta-mhs .info-group .status-error {
  color: #ef4444;
  font-weight: 500;
  background: #fee2e2;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
  border: 1px solid #fecaca;
}
.modal-overlay .modal-modern-card .modal-modern-body .validator-form .form-group-modern {
  margin-bottom: 0;
}
.modal-overlay .modal-modern-card .modal-modern-body .validator-form .form-group-modern label {
  font-weight: 600;
  color: #334155;
  margin-bottom: 8px;
  display: block;
  font-size: 14px;
}
.modal-overlay .modal-modern-card .modal-modern-body .validator-form .form-group-modern textarea {
  width: 100%;
  min-height: 90px;
  padding: 12px;
  resize: vertical;
  font-family: inherit;
}
.modal-overlay .modal-modern-card .modal-modern-body .modal-action-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.modal-overlay .modal-modern-card .modal-modern-body .modal-action-row button {
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  flex: 1;
  transition: background 0.2s;
  color: white;
}
.modal-overlay .modal-modern-card .modal-modern-body .modal-action-row button.btn-val-approve {
  background-color: #10b981;
}
.modal-overlay .modal-modern-card .modal-modern-body .modal-action-row button.btn-val-approve:hover {
  background-color: #059669;
}
.modal-overlay .modal-modern-card .modal-modern-body .modal-action-row button.btn-val-reject {
  background-color: #f59e0b;
}
.modal-overlay .modal-modern-card .modal-modern-body .modal-action-row button.btn-val-reject:hover {
  background-color: #d97706;
}
.modal-overlay .modal-modern-card .modal-modern-body .modal-action-row button.btn-val-delete {
  background-color: #ef4444;
}
.modal-overlay .modal-modern-card .modal-modern-body .modal-action-row button.btn-val-delete:hover {
  background-color: #dc2626;
}
@media (max-width: 480px) {
  .modal-overlay .modal-modern-card .modal-modern-body .modal-action-row {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .modal-overlay .modal-modern-card {
    margin: 10vh auto;
  }
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-20px) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
.schedule-container .notif {
  margin-bottom: 20px;
}
.schedule-container .schedule-card .card-header {
  margin-bottom: 25px;
}
.schedule-container .schedule-card .filter-section {
  background: #fdfdfd;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #eee;
  margin-bottom: 25px;
}
.schedule-container .schedule-card .filter-section form {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: flex-end;
}
.schedule-container .schedule-card .filter-section form .filter-group.search-group {
  flex: 1;
  min-width: 200px;
}
.schedule-container .schedule-card .filter-section form .filter-group.year-group {
  width: 150px;
}
.schedule-container .schedule-card .filter-section form .filter-group label {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 8px;
  display: block;
}
.schedule-container .schedule-card .filter-section form .filter-group input, .schedule-container .schedule-card .filter-section form .filter-group select {
  width: 100%;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
}
.schedule-container .schedule-card .filter-section form .btn-filter {
  padding: 10px 25px;
  border-radius: 8px;
  height: 42px;
}
.schedule-container .schedule-card .filter-section form .btn-reset {
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
  border-radius: 8px;
  line-height: 20px;
  height: 42px;
  box-sizing: border-box;
}
.schedule-container .schedule-card .report-group-section {
  margin-top: 40px;
  margin-bottom: 20px;
}
.schedule-container .schedule-card .report-group-section .group-title {
  color: #a805a8;
  font-size: 16px;
  font-weight: 700;
  border-left: 4px solid #a805a8;
  padding-left: 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.schedule-container .schedule-card .report-group-section .group-title .dpl-info {
  font-weight: 400;
  color: #64748b;
  font-size: 14px;
  margin-left: auto;
}
.schedule-container .schedule-card .modern-table td.text-center {
  text-align: center;
}
.schedule-container .schedule-card .modern-table td.text-muted {
  color: #64748b;
}
.schedule-container .schedule-card .modern-table td.font-medium {
  font-weight: 500;
}
.schedule-container .schedule-card .modern-table td .student-name {
  font-weight: 600;
  color: #1e293b;
  font-size: 14px;
}
.schedule-container .schedule-card .modern-table td .student-npm {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}
.schedule-container .schedule-card .modern-table td .text-slate-600 {
  color: #475569;
  font-size: 13px;
}
.schedule-container .schedule-card .modern-table td .reports-wrapper {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}
.schedule-container .schedule-card .modern-table td .reports-wrapper .report-item {
  display: flex;
  gap: 4px;
  background: #f1f5f9;
  padding: 3px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}
.schedule-container .schedule-card .modern-table td .reports-wrapper .report-item .btn-download-small, .schedule-container .schedule-card .modern-table td .reports-wrapper .report-item .btn-respond-small {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  cursor: pointer;
  padding: 0;
}
.schedule-container .schedule-card .modern-table td .reports-wrapper .report-item .btn-download-small {
  background: #fff;
  color: #475569;
}
.schedule-container .schedule-card .modern-table td .reports-wrapper .empty-report-text {
  color: #94a3b8;
  font-style: italic;
  font-size: 12px;
  background: #f8fafc;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px dashed #e2e8f0;
}
.schedule-container .schedule-card .modern-table td .reports-wrapper .btn-bundle {
  background: #a805a8;
  color: white;
  padding: 6px 12px;
  font-size: 11px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}
.schedule-container .schedule-card .empty-state {
  text-align: center;
  padding: 80px 20px;
}
.schedule-container .schedule-card .empty-state .icon-box {
  background: #f0e3fc;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}
.schedule-container .schedule-card .empty-state h3 {
  color: #1e293b;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
}
.schedule-container .schedule-card .empty-state p {
  color: #64748b;
  max-width: 420px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}
.modal[style*="display: block"] {
  display: flex !important;
}
.modal .modal-centered {
  margin: auto;
  max-width: 520px;
  width: 95%;
}
.modal .modal-centered .content {
  border-radius: 16px;
  border: none;
  background: #fff;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 100px);
  width: 100%;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.modal .modal-centered .content .container {
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
}
.modal .modal-centered .content .container .title {
  background: #a805a8;
  color: white;
  padding: 18px 24px;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.modal .modal-centered .content .container .title h1 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  padding: 0;
  border: none;
  color: white;
}
.modal .modal-centered .content .container .title .close-btn {
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  color: white;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.modal .modal-centered .content .container .title .close-btn:hover {
  opacity: 1;
}
.modal .modal-centered .content .container .field {
  padding: 24px;
  background: white;
  margin: 0;
  overflow-y: auto;
  flex-grow: 1;
}
.modal .modal-centered .content .container .field .info-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}
.modal .modal-centered .content .container .field .info-box #dta-mhs, .modal .modal-centered .content .container .field .info-box #dta-lap {
  color: #475569;
  font-size: 14px;
  line-height: 1.5;
}
.modal .modal-centered .content .container .field .info-box #dta-ket {
  color: #475569;
  font-size: 14px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #e2e8f0;
}
.modal .modal-centered .content .container .field .form-group {
  margin-bottom: 18px;
}
.modal .modal-centered .content .container .field .form-group.action-group {
  margin-bottom: 24px;
}
.modal .modal-centered .content .container .field .form-group label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  color: #1e293b;
  font-size: 13.5px;
}
.modal .modal-centered .content .container .field .form-group label .required-mark {
  color: #ef4444;
}
.modal .modal-centered .content .container .field .form-group select, .modal .modal-centered .content .container .field .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  color: #334155;
  outline: none;
  transition: all 0.2s;
  background: #fff;
}
.modal .modal-centered .content .container .field .form-group select {
  cursor: pointer;
}
.modal .modal-centered .content .container .field .form-group textarea {
  min-height: 110px;
  resize: vertical;
  font-family: inherit;
  line-height: 1.5;
}
.modal .modal-centered .content .container .field .form-group .hint-text {
  display: block;
  margin-top: 8px;
  color: #64748b;
  font-size: 12px;
  font-style: italic;
}
.modal .modal-centered .content .container .field .modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
  border-top: 1px solid #f1f5f9;
  padding-top: 20px;
}
.modal .modal-centered .content .container .field .modal-footer .btn-close-modal {
  padding: 10px 18px;
  background: #fff;
  color: #64748b;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.modal .modal-centered .content .container .field .modal-footer .btn-close-modal:hover {
  background: #f8fafc;
}
.modal .modal-centered .content .container .field .modal-footer .btn-submit-modal {
  padding: 10px 22px;
  background: #a805a8;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(168, 5, 168, 0.25);
}
.modal .modal-centered .content .container .field .modal-footer .btn-submit-modal:hover {
  background: #8a048a;
}

.info-ajax-wrapper {
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 6px;
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #f87171;
}

.reload-btn-wrapper {
  margin-top: 15px;
}
.reload-btn-wrapper .btn-reload {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
}

.validate-container {
  padding: 10px 0;
  font-family: "Poppins", "Inter", sans-serif;
  max-width: 1200px;
  margin: 0 auto;
}
.validate-container .validate-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
  padding: 30px;
  border: 1px solid #f9f9f9;
}
@media screen and (max-width: 768px) {
  .validate-container .validate-card {
    padding: 20px;
  }
}
.validate-container .validate-card .card-header {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0e3fc;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.validate-container .validate-card .card-header .card-title {
  font-size: 20px;
  color: #a805a8;
  font-weight: 700;
  margin: 0;
}
.validate-container .filter-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .validate-container .filter-form .form-row {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
}
.validate-container .filter-form .form-group-modern {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.validate-container .filter-form .form-group-modern.col-md-5 {
  flex: 0 0 40%;
}
.validate-container .filter-form .form-group-modern.col-md-3 {
  flex: 0 0 25%;
}
.validate-container .filter-form .form-group-modern.col-md-2 {
  flex: 0 0 15%;
}
@media screen and (max-width: 768px) {
  .validate-container .filter-form .form-group-modern.col-md-5, .validate-container .filter-form .form-group-modern.col-md-3, .validate-container .filter-form .form-group-modern.col-md-2 {
    flex: 1;
  }
}
.validate-container .filter-form .form-group-modern label {
  font-size: 13px;
  color: #333333;
  font-weight: 600;
  margin-bottom: 8px;
}
.validate-container .filter-form .form-group-modern label .required {
  color: #e74c3c;
  margin-left: 3px;
}
.validate-container .filter-form .form-group-modern .input-control {
  width: 100%;
  height: 35px;
  padding: 4px 12px;
  font-size: 14px;
  color: #555;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  transition: all 0.2s ease;
}
.validate-container .filter-form .form-group-modern .input-control:focus {
  border-color: #a805a8;
  outline: none;
  box-shadow: 0 0 0 3px rgba(168, 5, 168, 0.1);
}
.validate-container .filter-form .form-group-modern select.input-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 30px;
}
.validate-container .filter-form .btn-save {
  height: 35px;
  padding: 0 20px;
  border-radius: 4px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  background: #a805a8;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(168, 5, 168, 0.2);
  white-space: nowrap;
}
.validate-container .filter-form .btn-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(168, 5, 168, 0.3);
  background: rgb(143.2369942197, 4.2630057803, 143.2369942197);
}
.validate-container .table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 6px;
  border: 1px solid #eaeaea;
}
.validate-container .table-responsive .modern-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  white-space: nowrap;
}
.validate-container .table-responsive .modern-table thead th {
  background-color: #fcfcfc;
  padding: 15px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #eee;
}
.validate-container .table-responsive .modern-table tbody td {
  padding: 15px 16px;
  font-size: 14px;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}
.validate-container .table-responsive .modern-table tbody tr {
  transition: background-color 0.15s ease;
}
.validate-container .table-responsive .modern-table tbody tr:hover {
  background-color: #fafbfc;
}
.validate-container .table-responsive .modern-table .badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.validate-container .table-responsive .modern-table .badge.badge-success {
  background: #dcfce7;
  color: #166534;
}
.validate-container .table-responsive .modern-table .badge.badge-danger {
  background: #fee2e2;
  color: #991b1b;
}
.validate-container .table-responsive .modern-table .badge.badge-warning {
  background: #fef9c3;
  color: #854d0e;
}
.validate-container .table-responsive .modern-table .badge.badge-default {
  background: #f3f4f6;
  color: #374151;
}
.validate-container .table-responsive .modern-table .btn-action-view {
  padding: 6px 14px;
  border-radius: 4px;
  border: none;
  background-color: #eef2ff;
  color: #4f46e5;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.validate-container .table-responsive .modern-table .btn-action-view:hover {
  background-color: #c7d2fe;
}
.validate-container .empty-state {
  text-align: center;
  padding: 40px;
  color: #777777;
  background: #f9f9f9;
  border-radius: 6px;
  border: 1px dashed #ddd;
}

#res-lap-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#res-lap-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#res-lap-form .form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #333333;
}
#res-lap-form .form-group textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
  resize: vertical;
  font-family: inherit;
  font-size: 14px;
}
#res-lap-form .form-group textarea:focus {
  outline: none;
  border-color: #a805a8;
  box-shadow: 0 0 0 3px rgba(168, 5, 168, 0.1);
}
#res-lap-form .action-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  justify-content: flex-start;
}
#res-lap-form .action-row button {
  padding: 8px 16px;
  border-radius: 4px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}
#res-lap-form .action-row button.btn-approve {
  background: #10b981;
  color: white;
}
#res-lap-form .action-row button.btn-approve:hover {
  background: #059669;
}
#res-lap-form .action-row button.btn-reject {
  background: #ef4444;
  color: white;
}
#res-lap-form .action-row button.btn-reject:hover {
  background: #dc2626;
}
#res-lap-form .action-row button.btn-delete {
  background: #fff;
  color: #ef4444;
  border: 1px solid #ef4444;
}
#res-lap-form .action-row button.btn-delete:hover {
  background: #fee2e2;
}

.site-footer {
  width: 100%;
  background-color: #B33791;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  padding: 80px 5% 40px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 2fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 60px;
}
.site-footer .footer-grid .footer-col .footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.site-footer .footer-grid .footer-col .footer-brand img {
  height: 40px;
  width: 40px;
  object-fit: contain;
}
.site-footer .footer-grid .footer-col .footer-brand span {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.site-footer .footer-grid .footer-col .footer-address {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  max-width: 260px;
}
.site-footer .footer-grid .footer-col .footer-socials {
  display: flex;
  gap: 12px;
}
.site-footer .footer-grid .footer-col .footer-socials .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #72307e;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}
.site-footer .footer-grid .footer-col .footer-socials .social-icon:hover {
  transform: translateY(-3px);
  background-color: #FEC5F6;
}
.site-footer .footer-grid .footer-col .footer-socials .social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.site-footer .footer-grid .footer-col .footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 24px;
}
.site-footer .footer-grid .footer-col .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-grid .footer-col .footer-links li {
  margin-bottom: 12px;
}
.site-footer .footer-grid .footer-col .footer-links li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}
.site-footer .footer-grid .footer-col .footer-links li a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.site-footer .footer-grid .footer-col .footer-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}
.site-footer .footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}
.site-footer .footer-bottom .footer-policies {
  display: flex;
  gap: 20px;
}
.site-footer .footer-bottom .footer-policies a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.site-footer .footer-bottom .footer-policies a:hover {
  color: #ffffff;
}

@media screen and (max-width: 900px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .site-footer {
    padding: 60px 20px 30px;
  }
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .site-footer .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
.Sidebar {
  box-shadow: 0 2px 3px 2px rgba(0, 0, 0, 0.03);
  margin-left: 15px;
}

.SidebarAvatar {
  font-size: small;
  font-weight: 400;
  padding: 12px;
  background-color: #FFFFFF;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(220, 220, 220);
}

.SidebarAvatar div {
  padding-bottom: 5px;
  border-bottom: medium solid #D304F0;
  margin-bottom: 8px;
}

.SidebarMenu {
  overflow-x: hidden;
  background-color: #E7DEEC;
}

.SidebarMenu div a {
  display: block;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  background-color: #FFFFFF;
  color: #835d99;
  padding: 12px 15px 10px 10px;
}

.SidebarMenu div a:hover {
  padding: 12px 15px 10px 10px;
  background-color: #fbeffe;
  border-left: 3px solid rgb(136, 6, 212);
  color: #A000FF;
  -webkit-animation-name: menuBT;
  /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 0.5s;
  /* Safari 4.0 - 8.0 */
  animation-name: menuBT;
  animation-duration: 0.5s;
  left: 5px;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes menuBT {
  0% {
    background-color: #FFFFFF;
    color: #835d99;
    left: 0px;
  }
  100% {
    background-color: #B762E9;
    color: #A000FF;
    left: 5px;
  }
}
/* Standard syntax */
@keyframes menuBT {
  0% {
    background-color: #FFFFFF;
    color: #835d99;
    left: 0px;
  }
  100% {
    background-color: #fbeffe;
    color: #A000FF;
    left: 5px;
  }
}
.SidebarMenu div a:after {
  content: "»";
  position: absolute;
  opacity: 0;
  right: -5px;
  transition: 0.5s;
}

.SidebarMenu div:hover a:after {
  opacity: 1;
  right: 15px;
}

/* Container of all content */
html {
  height: 100%;
  -webkit-tap-highlight-color: transparent;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  min-height: 100%;
  position: relative;
  margin: 0px;
  padding: 55px 0 0 0;
}

body {
  line-height: 1.6384616;
  color: #333;
  background-color: #f2f4f9;
  font-family: "Open Sans", sans-serif;
  font-size: 12pt;
  font-style: normal;
  src: local("Open Sans Light"), local("OpenSans-Light"), url(http://fonts.gstatic.com/s/opensans/v13/DXI1ORHCpsQm3Vp6mXoaTa-j2U0lmluP9RWlSytm3ho.woff2) format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
  width: 100%;
  overflow: auto;
}

/* Container for Navigation Menu */
nav {
  display: inline-block;
  vertical-align: middle;
  min-height: 55px;
  width: 100%;
  text-align: center;
  top: 0;
  left: 0;
  color: #FFFFFF;
  background: #B33791;
  position: fixed;
  z-index: 199;
  transition: top 0.3s ease-in-out;
}

nav #logo {
  /* Company Logo text */
  background-color: #9904F0;
  float: left;
  margin-top: 5px;
  margin-left: 15px;
  color: hsl(0, 0%, 100%);
}

nav #logo h1:first-child {
  margin: 0px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 25px;
  text-decoration: underline;
}

nav #logo h1 {
  margin: 0px;
  text-transform: uppercase;
  letter-spacing: -0.7px;
  padding: 0px;
  font-size: small;
}

nav .menu {
  float: right;
  padding-right: 12%;
  text-align: center;
}

nav .button {
  font: small-caption;
  font-weight: 600;
  font-size: 16px;
  width: 90px;
  display: inline-block;
  cursor: default;
  color: #FFFFFF;
  background-color: hsl(278, 97%, 48%);
  padding: 1em;
  text-decoration: none;
  border: none;
}

nav .button:hover {
  background-color: hsl(278, 96%, 62%);
}

header {
  background-color: #8806d4;
  clear: both;
  float: none;
  color: rgb(255, 255, 255);
  margin-top: 0px;
  padding-top: 65px;
  width: 100%;
}

content #mainContent {
  width: 100%;
  float: Right;
  margin-top: 0px;
}

content {
  /* Container for the blog post */
  display: block;
  margin-top: 0px;
  padding-top: 0px;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  float: none;
}

footer {
  /* Footer region */
  width: 96%;
  padding-left: 2%;
  padding-right: 2%;
}

/* Container for footer*/
footer {
  bottom: 0px;
  clear: both;
  width: 100%;
  background-color: #8806D4;
  padding-bottom: 40px;
  position: relative;
  left: 0;
  right: 0;
  bottom: 0;
}

footer a:link {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

footer a:visited {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

footer #footerbar {
  /* Footer bar at the bottom of the page */
  float: none;
  height: 5px;
  background-color: #8806D4;
}

footer .opn {
  font-weight: bold;
  border-bottom: 2px solid #ffffff;
  padding: 10px;
  font-size: 12pt;
  text-transform: uppercase;
}

footer .cls {
  padding: 10px;
}

footer section {
  color: #ffffff;
  font-size: 14px;
}

/*# sourceMappingURL=style.css.map */
