@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  font-weight: 400;
}

.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 260px;
  height: 100vh;
  background: linear-gradient(180deg, #2c3e50 0%, #1a252f 100%);
  color: #ffffff;
  z-index: 1000;
  transition: width 0.3s ease;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}
.sidebar.collapsed {
  width: 80px;
}
.sidebar.collapsed .logo-text,
.sidebar.collapsed .sidebar-menu span,
.sidebar.collapsed .sidebar-footer,
.sidebar.collapsed .menu-label {
  opacity: 0;
  visibility: hidden;
  display: none;
}
.sidebar.collapsed .logo-icon {
  width: 35px !important;
  height: 35px !important;
}
.sidebar.collapsed .sidebar-menu ul li a {
  justify-content: center;
  padding: 14px 10px;
}
.sidebar.collapsed .sidebar-toggle i {
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    width: 260px;
  }
  .sidebar.collapsed {
    width: 260px;
  }
  .sidebar.active {
    transform: translateX(0);
  }
}
.sidebar .sidebar-header {
  padding: 25px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.sidebar .sidebar-header .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sidebar .sidebar-header .logo .logo-icon {
  width: 45px;
  height: 45px;
  background: #00d084;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  flex-shrink: 0;
}
.sidebar .sidebar-header .logo .logo-text {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sidebar .sidebar-header .logo .logo-text h1 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}
.sidebar .sidebar-header .logo .logo-text p {
  font-size: 11px;
  opacity: 0.7;
}
.sidebar .sidebar-header .sidebar-toggle {
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: #00d084;
  border: none;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1001;
}
@media (max-width: 768px) {
  .sidebar .sidebar-header .sidebar-toggle {
    display: none;
  }
}
.sidebar .sidebar-header .sidebar-toggle:hover {
  background: #00b872;
  transform: translateY(-50%) scale(1.1);
}
.sidebar .sidebar-header .sidebar-toggle i {
  font-size: 14px;
  transition: transform 0.3s ease;
}
.sidebar .sidebar-menu {
  padding: 20px 0;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: calc(100vh - 165px);
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 208, 132, 0.5) rgba(255, 255, 255, 0.05);
}
.sidebar .sidebar-menu::-webkit-scrollbar {
  width: 6px;
}
.sidebar .sidebar-menu::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin: 10px 0;
}
.sidebar .sidebar-menu::-webkit-scrollbar-thumb {
  background: rgba(0, 208, 132, 0.5);
  border-radius: 10px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.sidebar .sidebar-menu::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 208, 132, 0.8);
}
.sidebar .sidebar-menu .menu-label {
  padding: 15px 20px 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.5;
  font-weight: 600;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sidebar .sidebar-menu .menu-label {
  padding: 15px 20px 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.5;
  font-weight: 600;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sidebar .sidebar-menu ul {
  list-style: none;
}
.sidebar .sidebar-menu ul li a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 20px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  position: relative;
}
.sidebar .sidebar-menu ul li a i {
  font-size: 18px;
  width: 20px;
  opacity: 0.8;
  flex-shrink: 0;
}
.sidebar .sidebar-menu ul li a span {
  font-size: 15px;
  font-weight: 500;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sidebar .sidebar-menu ul li a:hover {
  background: rgba(255, 255, 255, 0.05);
  border-left-color: rgba(0, 208, 132, 0.5);
  padding-left: 25px;
}
.sidebar .sidebar-menu ul li a.active {
  background: rgba(0, 208, 132, 0.1);
  border-left-color: #00d084;
}
.sidebar .sidebar-menu ul li a.active i,
.sidebar .sidebar-menu ul li a.active span {
  opacity: 1;
}
.sidebar .sidebar-menu ul ul li a {
  padding-left: 40px;
}
.sidebar .sidebar-menu ul ul li a:hover {
  padding-left: 45px;
}
.sidebar .sidebar-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  opacity: 0.6;
  text-align: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1001;
  background: #2c3e50;
  color: #ffffff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
}
.menu-toggle:hover {
  background: #3d5871;
  transform: scale(1.05);
}
.menu-toggle.active {
  left: 275px;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}
.sidebar-overlay.active {
  display: block;
}

.main-content {
  margin-left: 260px;
  min-height: 100vh;
  transition: margin-left 0.3s ease;
}
.main-content.expanded {
  margin-left: 80px;
}
@media (max-width: 768px) {
  .main-content {
    margin-left: 0;
  }
}

.page-header {
  background: #ffffff;
  padding: 30px 40px;
  margin-bottom: 30px;
  border-bottom: 2px solid #e0e0e0;
}
@media (max-width: 768px) {
  .page-header {
    padding: 20px;
    margin-top: 70px;
  }
}
.page-header h2 {
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 8px;
}
@media (max-width: 576px) {
  .page-header h2 {
    font-size: 22px;
  }
}
.page-header p {
  color: #666;
  font-size: 15px;
}
.page-header a {
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  flex: 1;
  margin-top: 20px;
}
.page-header a.btn-primary {
  background: #00d084;
  color: #ffffff;
}
.page-header a.btn-primary:hover {
  background: #00b872;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 208, 132, 0.3);
}
.page-header a.btn-secondary {
  background: transparent;
  color: #333;
  border: 2px solid #e0e0e0;
}
.page-header a.btn-secondary:hover {
  background: #f8f9fa;
  border-color: #333;
}

.main-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px;
}
@media (max-width: 768px) {
  .main-container {
    padding: 20px;
  }
}

.alert {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  animation: slideIn 0.3s ease;
}
.alert i {
  font-size: 20px;
  flex-shrink: 0;
}
.alert.alert-info {
  background: rgb(246.9309623431, 250.9058577406, 253.5690376569);
  color: rgb(33.1380753138, 125.1882845188, 186.8619246862);
  border-left: 4px solid #3498db;
}
.alert.alert-info i {
  color: #3498db;
}
.alert.alert-success {
  background: rgb(220.6901408451, 247.3098591549, 231.9295774648);
  color: rgb(29.661971831, 132.338028169, 73.014084507);
  border-left: 4px solid #27ae60;
}
.alert.alert-success i {
  color: #27ae60;
}
.alert.alert-warning {
  background: rgb(252.8313253012, 237.1084337349, 212.1686746988);
  color: rgb(175.6084337349, 111.1445783133, 8.8915662651);
  border-left: 4px solid #f39c12;
}
.alert.alert-warning i {
  color: #f39c12;
}
.alert.alert-error {
  background: rgb(253.3561643836, 242.7397260274, 241.6438356164);
  color: rgb(213.698630137, 43.8356164384, 26.301369863);
  border-left: 4px solid #e74c3c;
}
.alert.alert-error i {
  color: #e74c3c;
}

.form-container {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.form-container:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  .form-container {
    padding: 30px;
  }
}
@media (max-width: 576px) {
  .form-container {
    padding: 20px;
  }
}
.form-container h3 {
  font-size: 32px;
  color: #2c3e50;
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  .form-container h3 {
    font-size: 24px;
  }
}
.form-container .form-subtitle {
  color: #666;
  margin-bottom: 30px;
  font-size: 16px;
}
.form-container form .form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .form-container form .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.form-container form .form-row.full-width {
  grid-template-columns: 1fr;
}
.form-container form .form-group {
  margin-bottom: 20px;
}
.form-container form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}
.form-container form .form-group label .required {
  color: #e74c3c;
}
.form-container form .form-group input,
.form-container form .form-group select,
.form-container form .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #ffffff;
  font-family: "Inter", sans-serif;
}
.form-container form .form-group input:focus,
.form-container form .form-group select:focus,
.form-container form .form-group textarea:focus {
  outline: none;
  border-color: #00d084;
  box-shadow: 0 0 0 3px rgba(0, 208, 132, 0.1);
}
.form-container form .form-group input::-moz-placeholder, .form-container form .form-group select::-moz-placeholder, .form-container form .form-group textarea::-moz-placeholder {
  color: #999;
}
.form-container form .form-group input::placeholder,
.form-container form .form-group select::placeholder,
.form-container form .form-group textarea::placeholder {
  color: #999;
}
.form-container form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-container form .checkbox-group {
  margin: 25px 0;
}
.form-container form .checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-weight: normal;
}
.form-container form .checkbox-group label input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #00d084;
}
.form-container form .checkbox-group label span {
  flex: 1;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}
.form-container form .form-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}
@media (max-width: 576px) {
  .form-container form .form-actions {
    flex-direction: column;
  }
}
.form-container form .form-actions button {
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  flex: 1;
}
.form-container form .form-actions button.btn-primary {
  background: #00d084;
  color: #ffffff;
}
.form-container form .form-actions button.btn-primary:hover {
  background: #00b872;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 208, 132, 0.3);
}
.form-container form .form-actions button.btn-secondary {
  background: transparent;
  color: #333;
  border: 2px solid #e0e0e0;
}
.form-container form .form-actions button.btn-secondary:hover {
  background: #f8f9fa;
  border-color: #333;
}

.step-form-container .form-steps-indicator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}
.step-form-container .form-steps-indicator::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: #e0e0e0;
  z-index: 0;
}
.step-form-container .form-steps-indicator .step-indicator {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.step-form-container .form-steps-indicator .step-indicator .step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #666;
  transition: all 0.3s ease;
}
.step-form-container .form-steps-indicator .step-indicator .step-label {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  text-align: center;
  transition: all 0.3s ease;
}
.step-form-container .form-steps-indicator .step-indicator.active .step-circle {
  background: #00d084;
  border-color: #00d084;
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 208, 132, 0.3);
}
.step-form-container .form-steps-indicator .step-indicator.active .step-label {
  color: #00d084;
  font-weight: 700;
}
.step-form-container .form-steps-indicator .step-indicator.completed .step-circle {
  background: #00b872;
  border-color: #00b872;
  color: #ffffff;
}
.step-form-container .form-steps-indicator .step-indicator.completed .step-circle .step-number {
  display: none;
}
.step-form-container .form-steps-indicator .step-indicator.completed .step-circle::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.step-form-container .form-steps-indicator .step-indicator.completed .step-label {
  color: #00b872;
}
@media (max-width: 576px) {
  .step-form-container .form-steps-indicator .step-label {
    font-size: 10px;
  }
  .step-form-container .form-steps-indicator .step-circle {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}
.step-form-container .form-step {
  display: none;
  animation: fadeInUp 0.4s ease;
}
.step-form-container .form-step.active {
  display: block;
}
.step-form-container .form-step .form-step-title {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .step-form-container .form-step .form-step-title {
    font-size: 20px;
  }
}
.step-form-container .form-step .form-step-description {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}
.step-form-container .form-navigation {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}
@media (max-width: 576px) {
  .step-form-container .form-navigation {
    flex-direction: column-reverse;
  }
}
.step-form-container .form-navigation .btn-prev,
.step-form-container .form-navigation .btn-next {
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  flex: 1;
}
.step-form-container .form-navigation .btn-prev i,
.step-form-container .form-navigation .btn-next i {
  margin: 0 8px;
}
.step-form-container .form-navigation .btn-prev {
  background: transparent;
  color: #333;
  border: 2px solid #e0e0e0;
}
.step-form-container .form-navigation .btn-prev:hover {
  background: #f8f9fa;
  border-color: #333;
  transform: translateY(-2px);
}
.step-form-container .form-navigation .btn-next {
  background: #00d084;
  color: #ffffff;
}
.step-form-container .form-navigation .btn-next:hover {
  background: #00b872;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 208, 132, 0.3);
}

.announcements {
  background: #ffffff;
  border-radius: 20px;
  padding: 0;
  margin-bottom: 40px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.announcements:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.announcements .announcements-header {
  padding: 30px;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
@media (max-width: 576px) {
  .announcements .announcements-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.announcements .announcements-header h3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  margin: 0;
  color: #ffffff;
}
@media (max-width: 576px) {
  .announcements .announcements-header h3 {
    font-size: 22px;
  }
}
.announcements .announcements-header .btn-delete {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.announcements .announcements-header .btn-delete:hover {
  background: rgba(231, 76, 60, 0.9);
  border-color: rgb(231, 76, 60);
  transform: translateY(-2px);
}
.announcements .announcements-header .btn-delete i {
  font-size: 13px;
}
.announcements .announcements-list {
  padding: 30px;
}
.announcements .announcement-item {
  padding: 25px;
  margin-bottom: 20px;
  border-left: 4px solid #00d084;
  background: linear-gradient(to right, rgba(0, 208, 132, 0.05), transparent);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.announcements .announcement-item:last-child {
  margin-bottom: 0;
}
.announcements .announcement-item:hover {
  background: linear-gradient(to right, rgba(0, 208, 132, 0.1), transparent);
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.announcements .announcement-item .back-link a {
  color: #1a252f;
  text-decoration: none;
}
.announcements .announcement-item .announcement-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 15px;
}
@media (max-width: 576px) {
  .announcements .announcement-item .announcement-header {
    flex-direction: column;
    gap: 8px;
  }
}
.announcements .announcement-item .announcement-header h4 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
  flex: 1;
}
.announcements .announcement-item .announcement-header h4 a {
  color: #2c3e50;
  text-decoration: none;
}
@media (max-width: 576px) {
  .announcements .announcement-item .announcement-header h4 {
    font-size: 16px;
  }
}
.announcements .announcement-item .announcement-header .announcement-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.announcements .announcement-item .announcement-header .date {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #666;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.announcements .announcement-item .announcement-header .date i {
  font-size: 12px;
}
.announcements .announcement-item .announcement-header .btn-delete-small {
  padding: 6px 10px;
  background: transparent;
  color: #e74c3c;
  border: 1px solid #e74c3c;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}
.announcements .announcement-item .announcement-header .btn-delete-small:hover {
  background: #e74c3c;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}
.announcements .announcement-item .announcement-header .btn-delete-small i {
  font-size: 12px;
}
.announcements .announcement-item p {
  color: #333;
  line-height: 1.7;
  margin: 0 0 12px 0;
}
.announcements .announcement-item .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #00d084;
  color: #ffffff;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.announcements .announcement-item .badge i {
  font-size: 10px;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .contact-section {
    grid-template-columns: 1fr;
  }
}
.contact-section.full-width {
  grid-template-columns: 1fr;
  gap: 0;
}
.contact-section .contact-form,
.contact-section .contact-info {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.contact-section .contact-form:hover,
.contact-section .contact-info:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  .contact-section .contact-form,
  .contact-section .contact-info {
    padding: 30px;
  }
}
@media (max-width: 576px) {
  .contact-section .contact-form,
  .contact-section .contact-info {
    padding: 25px;
  }
}
.contact-section .contact-form h3,
.contact-section .contact-info h3 {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
}
@media (max-width: 576px) {
  .contact-section .contact-form h3,
  .contact-section .contact-info h3 {
    font-size: 22px;
  }
}
.contact-section .contact-form .btn-primary,
.contact-section .contact-info .btn-primary {
  background-color: #2563eb;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.contact-section .contact-form .btn-primary:hover,
.contact-section .contact-info .btn-primary:hover {
  background-color: #1d4ed8;
}
.contact-section .contact-form .btn-secondary,
.contact-section .contact-info .btn-secondary {
  background-color: #e5e7eb;
  color: #374151;
  border: none;
  border-radius: 6px;
  padding: 9px 18px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.contact-section .contact-form .btn-secondary:hover,
.contact-section .contact-info .btn-secondary:hover {
  background-color: #d1d5db;
}
.contact-section .contact-form .btn-danger,
.contact-section .contact-info .btn-danger {
  background-color: #ef4444;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 9px 18px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.contact-section .contact-form .btn-danger:hover,
.contact-section .contact-info .btn-danger:hover {
  background-color: #dc2626;
}
.contact-section .contact-form p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}
.contact-section .contact-form .form-group {
  margin-bottom: 20px;
}
.contact-section .contact-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}
.contact-section .contact-form .form-group label .required {
  color: #e74c3c;
}
.contact-section .contact-form .form-group input,
.contact-section .contact-form .form-group select,
.contact-section .contact-form .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
  background: #ffffff;
}
.contact-section .contact-form .form-group input:focus,
.contact-section .contact-form .form-group select:focus,
.contact-section .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #00d084;
  box-shadow: 0 0 0 3px rgba(0, 208, 132, 0.1);
}
.contact-section .contact-form .form-group input::-moz-placeholder, .contact-section .contact-form .form-group select::-moz-placeholder, .contact-section .contact-form .form-group textarea::-moz-placeholder {
  color: #999;
}
.contact-section .contact-form .form-group input::placeholder,
.contact-section .contact-form .form-group select::placeholder,
.contact-section .contact-form .form-group textarea::placeholder {
  color: #999;
}
.contact-section .contact-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: "Inter", sans-serif;
}
.contact-section .contact-form .form-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}
@media (max-width: 576px) {
  .contact-section .contact-form .form-actions {
    flex-direction: column;
  }
}
.contact-section .contact-form .form-actions button {
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  flex: 1;
}
.contact-section .contact-form .form-actions button.btn-primary {
  background: #00d084;
  color: #ffffff;
}
.contact-section .contact-form .form-actions button.btn-primary:hover {
  background: #00b872;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 208, 132, 0.3);
}
.contact-section .contact-form .form-actions button.btn-secondary {
  background: transparent;
  color: #333;
  border: 2px solid #e0e0e0;
}
.contact-section .contact-form .form-actions button.btn-secondary:hover {
  background: #f8f9fa;
  border-color: #333;
}
.contact-section .contact-info {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: #ffffff;
}
.contact-section .contact-info h3 {
  color: #ffffff;
}
.contact-section .contact-info .contact-description {
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.7;
}
.contact-section .contact-info .info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.contact-section .contact-info .info-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}
.contact-section .contact-info .info-item .icon {
  width: 50px;
  height: 50px;
  background: #00d084;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.contact-section .contact-info .info-item .content {
  flex: 1;
}
.contact-section .contact-info .info-item .content h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-section .contact-info .info-item .content p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}
.contact-section .contact-info .info-item .content p a {
  color: #ffffff;
  text-decoration: none;
}
.contact-section .contact-info .info-item .content p a:hover {
  text-decoration: underline;
}
.contact-section .contact-info .social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}
.contact-section .contact-info .social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.contact-section .contact-info .social-links a:hover {
  background: #00d084;
  transform: translateY(-3px);
  text-decoration: none;
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
}
@media (max-width: 576px) {
  .empty-state {
    padding: 60px 20px;
  }
}
.empty-state .empty-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #00d084, #00b872);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 48px;
  color: #ffffff;
}
@media (max-width: 576px) {
  .empty-state .empty-icon {
    width: 100px;
    height: 100px;
    font-size: 40px;
  }
}
.empty-state h3 {
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .empty-state h3 {
    font-size: 22px;
  }
}
.empty-state p {
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
}
.empty-state .btn-primary {
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  background: #00d084;
  color: #ffffff;
}
.empty-state .btn-primary:hover {
  background: #00b872;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 208, 132, 0.3);
}

.header-content-center {
  text-align: center;
  padding: 40px 0;
}
.header-content-center .header-logo {
  height: 80px;
  margin-bottom: 20px;
}
.header-content-center .header-title {
  margin-top: 30px;
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
}
@media (max-width: 576px) {
  .header-content-center .header-title {
    font-size: 24px;
  }
}
.header-content-center .header-subtitle {
  color: #00d084;
  font-size: 18px;
  margin-top: 10px;
  font-weight: 500;
}
@media (max-width: 576px) {
  .header-content-center .header-subtitle {
    font-size: 16px;
  }
}

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 20px;
}
@media (max-width: 576px) {
  .info-cards-grid {
    gap: 20px;
    margin-top: 40px;
  }
}
.info-cards-grid .info-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.info-cards-grid .info-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
@media (max-width: 576px) {
  .info-cards-grid .info-card {
    padding: 30px;
  }
}
.info-cards-grid .info-card .info-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00d084, #00b872);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #ffffff;
  font-size: 36px;
}
.info-cards-grid .info-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}
.info-cards-grid .info-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}
.info-cards-grid .info-card .card-btn {
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  background: #00d084;
  color: #ffffff;
}
.info-cards-grid .info-card .card-btn:hover {
  background: #00b872;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 208, 132, 0.3);
}

.success-container {
  background: white;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
  animation: slideUp 0.6s ease;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.success-container .success-icon {
  width: 100px;
  height: 100px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  animation: scaleIn 0.6s ease 0.3s both;
}
@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.success-container .success-icon i {
  font-size: 50px;
  color: white;
}
.success-container h1 {
  color: #10b981;
  font-size: 32px;
  margin-bottom: 15px;
}
.success-container .message {
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
}
.success-container .info-box {
  background: #f9fafb;
  border-radius: 12px;
  padding: 25px;
  margin: 30px 0;
  text-align: left;
}
.success-container .info-box .info-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}
.success-container .info-box .info-row:last-child {
  border-bottom: none;
}
.success-container .info-box .info-row .info-label {
  color: #6b7280;
  font-weight: 500;
}
.success-container .info-box .info-row .info-value {
  color: #111827;
  font-weight: 600;
}
.success-container .countdown {
  background: #fef3c7;
  border: 2px solid #fbbf24;
  border-radius: 12px;
  padding: 20px;
  margin: 30px 0;
}
.success-container .countdown .countdown-text {
  color: #92400e;
  font-size: 14px;
  margin-bottom: 10px;
}
.success-container .countdown .countdown-timer {
  font-size: 36px;
  font-weight: bold;
  color: #b45309;
}
.success-container .btn-print {
  background: #00b872;
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}
.success-container .btn-print:hover {
  background: #00d084;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}
.success-container .btn-print i {
  margin-left: 10px;
}
@media (max-width: 768px) {
  .success-container {
    padding: 30px 20px;
  }
  .success-container h1 {
    font-size: 24px;
  }
  .success-container .info-box .info-row {
    flex-direction: column;
    gap: 5px;
  }
}

.error-container {
  background: white;
  border-radius: 20px;
  padding: 30px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
  animation: slideUp 0.6s ease;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.error-container .error-icon {
  width: 100px;
  height: 100px;
  background: #ef4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  animation: scaleIn 0.6s ease 0.3s both;
}
@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.error-container .error-icon i {
  font-size: 50px;
  color: white;
}
.error-container h1 {
  color: #ef4444;
  font-size: 32px;
  margin-bottom: 15px;
}
.error-container .message {
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
}
.error-container .reasons {
  background: #fef2f2;
  border-radius: 12px;
  padding: 25px;
  margin: 30px 0;
  text-align: left;
}
.error-container .reasons h3 {
  color: #991b1b;
  font-size: 18px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.error-container .reasons h3 i {
  color: #ef4444;
}
.error-container .reasons ul {
  list-style: none;
  padding: 0;
}
.error-container .reasons ul li {
  color: #7f1d1d;
  padding: 8px 0 8px 25px;
  position: relative;
  font-size: 14px;
}
.error-container .reasons ul li::before {
  content: "•";
  position: absolute;
  left: 10px;
  color: #ef4444;
  font-weight: bold;
  font-size: 18px;
}
.error-container .action-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.error-container .action-buttons .btn {
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
}
.error-container .action-buttons .btn i {
  font-size: 18px;
}
.error-container .action-buttons .btn.btn-primary {
  background: #00b872;
  color: white;
}
.error-container .action-buttons .btn.btn-primary:hover {
  background: #00d084;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}
.error-container .action-buttons .btn.btn-secondary {
  background: white;
  color: #00b872;
  border: 2px solid #00b872;
}
.error-container .action-buttons .btn.btn-secondary:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
}
.error-container .support-info {
  background: #f9fafb;
  border-radius: 12px;
  padding: 20px;
  margin-top: 30px;
  text-align: center;
}
.error-container .support-info h4 {
  color: #374151;
  margin-bottom: 15px;
  font-size: 16px;
}
.error-container .support-info p {
  color: #6b7280;
  margin-bottom: 10px;
  font-size: 14px;
}
.error-container .support-info a {
  color: #00b872;
  text-decoration: none;
  font-weight: 600;
}
.error-container .support-info a:hover {
  text-decoration: underline;
}
.error-container .support-info i {
  margin-right: 5px;
}
@media (max-width: 768px) {
  .error-container {
    padding: 30px 20px;
  }
  .error-container h1 {
    font-size: 24px;
  }
  .error-container .message {
    font-size: 14px;
  }
  .error-container .action-buttons {
    flex-direction: column;
  }
  .error-container .action-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

.exam-document .no-print {
  text-align: center;
  margin-bottom: 20px;
}
.exam-document .payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #10b981;
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 10px;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.25);
  animation: fadeIn 0.4s ease;
}
.exam-document .payment-badge i {
  font-size: 16px;
  line-height: 1;
}
.exam-document .payment-badge.success {
  background: #10b981;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.25);
}
.exam-document .payment-badge.success i {
  color: #fff;
}
.exam-document .payment-badge.pending {
  background: #fbbf24;
  box-shadow: 0 4px 10px rgba(251, 191, 36, 0.25);
}
.exam-document .payment-badge.pending i {
  color: #fff;
}
.exam-document .payment-badge.failed {
  background: #ef4444;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.25);
}
.exam-document .payment-badge.failed i {
  color: #fff;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.exam-document .btn {
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin: 0 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.exam-document .btn.btn-print {
  background: #00b872;
}
.exam-document .btn.btn-print:hover {
  background: #00d084;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}
.exam-document .btn.btn-home {
  background: #10b981;
}
.exam-document .btn.btn-home:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}
.exam-document .document-container {
  margin: 0 auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.exam-document .document-container .document-header {
  background: linear-gradient(135deg, #00b872 0%, #00d084 100%);
  color: white;
  padding: 40px;
  text-align: center;
  position: relative;
}
.exam-document .document-container .document-header .school-logo {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #00b872;
  font-weight: bold;
}
.exam-document .document-container .document-header h1 {
  font-size: 28px;
  margin-bottom: 10px;
}
.exam-document .document-container .document-header p {
  font-size: 16px;
  opacity: 0.9;
}
.exam-document .document-container .document-body {
  padding: 40px;
}
.exam-document .document-container .document-body .document-title {
  text-align: center;
  margin-bottom: 30px;
}
.exam-document .document-container .document-body .document-title h2 {
  color: #1f2937;
  font-size: 24px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.exam-document .document-container .document-body .document-title .document-number {
  background: #f9fafb;
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 10px;
}
.exam-document .document-container .document-body .document-title .document-number strong {
  color: #00b872;
}
.exam-document .document-container .document-body .info-section {
  margin: 30px 0;
}
.exam-document .document-container .document-body .info-section h3 {
  color: #374151;
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 10px;
}
.exam-document .document-container .document-body .info-section .info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.exam-document .document-container .document-body .info-section .info-grid .info-item {
  background: #f9fafb;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #00b872;
}
.exam-document .document-container .document-body .info-section .info-grid .info-item .info-label {
  color: #6b7280;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
  font-weight: 600;
}
.exam-document .document-container .document-body .info-section .info-grid .info-item .info-value {
  color: #111827;
  font-size: 16px;
  font-weight: 600;
}
.exam-document .document-container .document-body .exam-details {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  padding: 25px;
  border-radius: 12px;
  margin: 30px 0;
  border: 2px solid #fbbf24;
}
.exam-document .document-container .document-body .exam-details h3 {
  color: #92400e;
  font-size: 18px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.exam-document .document-container .document-body .exam-details h3 i {
  color: #f59e0b;
}
.exam-document .document-container .document-body .exam-details .exam-info {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.exam-document .document-container .document-body .exam-details .exam-info .exam-info-item {
  text-align: center;
}
.exam-document .document-container .document-body .exam-details .exam-info .exam-info-item .icon {
  font-size: 24px;
  color: #b45309;
  margin-bottom: 10px;
}
.exam-document .document-container .document-body .exam-details .exam-info .exam-info-item .label {
  color: #78350f;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.exam-document .document-container .document-body .exam-details .exam-info .exam-info-item .value {
  color: #92400e;
  font-size: 18px;
  font-weight: bold;
}
.exam-document .document-container .document-body .important-notes {
  background: #fef2f2;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #ef4444;
  margin: 30px 0;
}
.exam-document .document-container .document-body .important-notes h3 {
  color: #991b1b;
  font-size: 16px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.exam-document .document-container .document-body .important-notes ul {
  list-style: none;
  padding: 0;
}
.exam-document .document-container .document-body .important-notes ul li {
  color: #7f1d1d;
  padding: 8px 0 8px 25px;
  position: relative;
  font-size: 14px;
}
.exam-document .document-container .document-body .important-notes ul li::before {
  content: "•";
  position: absolute;
  left: 10px;
  color: #ef4444;
  font-weight: bold;
}
.exam-document .document-container .document-footer {
  background: #f9fafb;
  padding: 30px;
  text-align: center;
  border-top: 2px solid #e5e7eb;
}
.exam-document .document-container .document-footer .barcode {
  margin: 20px 0;
}
.exam-document .document-container .document-footer .barcode .barcode-image {
  background: white;
  padding: 15px;
  border-radius: 8px;
  display: inline-block;
  border: 2px solid #e5e7eb;
}
.exam-document .document-container .document-footer .qr-code {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.exam-document .document-container .document-footer p {
  color: #6b7280;
  font-size: 12px;
  margin-top: 15px;
  line-height: 1.6;
}
.exam-document .document-container .document-footer .payment-badge {
  display: inline-block;
  background: #10b981;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 10px;
}
@media print {
  .exam-document body {
    background: white;
    padding: 0;
  }
  .exam-document .no-print {
    display: none !important;
  }
  .exam-document .document-container {
    box-shadow: none;
    border-radius: 0;
    max-width: 100%;
  }
  .exam-document .info-grid {
    page-break-inside: avoid;
  }
  @page {
    .exam-document {
      margin: 1cm;
    }
  }
}
@media (max-width: 768px) {
  .exam-document .info-grid {
    grid-template-columns: 1fr;
  }
  .exam-document .document-body {
    padding: 20px;
  }
  .exam-document .document-header {
    padding: 30px 20px;
  }
  .exam-document .btn {
    width: 100%;
    margin: 5px 0;
  }
}

.custom-search {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.custom-search:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  .custom-search {
    padding: 20px;
  }
}
.custom-search .search-wrapper {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .custom-search .search-wrapper {
    gap: 10px;
  }
}
.custom-search .search-field {
  flex: 1 1 200px;
  min-width: 200px;
}
@media (max-width: 768px) {
  .custom-search .search-field {
    flex: 1 1 100%;
    min-width: 100%;
  }
}
.custom-search .search-actions {
  flex: 0 0 auto;
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  .custom-search .search-actions {
    flex: 1 1 100%;
    width: 100%;
  }
}
.custom-search .form-control,
.custom-search .form-select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #ffffff;
  font-family: "Inter", sans-serif;
}
.custom-search .form-control:focus,
.custom-search .form-select:focus {
  outline: none;
  border-color: #00d084;
  box-shadow: 0 0 0 3px rgba(0, 208, 132, 0.1);
}
.custom-search .form-control::-moz-placeholder, .custom-search .form-select::-moz-placeholder {
  color: #999;
}
.custom-search .form-control::placeholder,
.custom-search .form-select::placeholder {
  color: #999;
}
.custom-search .form-control:disabled,
.custom-search .form-select:disabled {
  background: white;
  cursor: not-allowed;
  opacity: 0.6;
}
.custom-search .btn-primary,
.custom-search .btn-excel {
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.custom-search .btn-primary i,
.custom-search .btn-excel i {
  margin-right: 8px;
}
@media (max-width: 768px) {
  .custom-search .btn-primary,
  .custom-search .btn-excel {
    flex: 1;
  }
}
.custom-search .btn-primary {
  background: #00d084;
  color: #ffffff;
}
.custom-search .btn-primary:hover {
  background: #00b872;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 208, 132, 0.3);
}
.custom-search .btn-excel {
  background: #217346;
  color: #ffffff;
}
.custom-search .btn-excel:hover {
  background: #1a5c37;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(33, 115, 70, 0.3);
}

.datatable-container {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}
.datatable-container:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  .datatable-container {
    padding: 15px;
    overflow-x: auto;
  }
}

table.dataTable {
  width: 100% !important;
  border-collapse: separate;
  border-spacing: 0;
}
@media (max-width: 768px) {
  table.dataTable {
    font-size: 13px;
  }
}
table.dataTable thead th {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: #ffffff;
  padding: 18px 15px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  border: none;
}
@media (max-width: 768px) {
  table.dataTable thead th {
    padding: 12px 8px;
    font-size: 12px;
  }
}
table.dataTable thead th:first-child {
  border-radius: 12px 0 0 0;
}
table.dataTable thead th:last-child {
  border-radius: 0 12px 0 0;
}
table.dataTable tbody td {
  padding: 16px 15px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  color: #333;
}
@media (max-width: 768px) {
  table.dataTable tbody td {
    padding: 12px 8px;
    font-size: 12px;
  }
}
table.dataTable tbody td a {
  color: #00d084;
}
table.dataTable tbody tr {
  transition: all 0.3s ease;
}
table.dataTable tbody tr:hover {
  background: #f8fffe;
  transform: scale(1.01);
}

.deleteRecord {
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  background: #e74c3c;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
}
.deleteRecord i {
  font-size: 14px;
}
.deleteRecord:hover {
  background: rgb(213.698630137, 43.8356164384, 26.301369863);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(231, 76, 60, 0.3);
}
.deleteRecord:active {
  transform: translateY(0);
}

.deleteRecord1 {
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  background: #e74c3c;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
}
.deleteRecord1 i {
  font-size: 14px;
}
.deleteRecord1:hover {
  background: rgb(213.698630137, 43.8356164384, 26.301369863);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(231, 76, 60, 0.3);
}
.deleteRecord1:active {
  transform: translateY(0);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.status-badge i {
  font-size: 10px;
}
.status-badge.success {
  background: rgb(220.6901408451, 247.3098591549, 231.9295774648);
  color: rgb(29.661971831, 132.338028169, 73.014084507);
}
.status-badge.admin {
  background: rgb(246.9309623431, 250.9058577406, 253.5690376569);
  color: rgb(33.1380753138, 125.1882845188, 186.8619246862);
}
.status-badge.dealer {
  background: rgb(252.8313253012, 237.1084337349, 212.1686746988);
  color: rgb(175.6084337349, 111.1445783133, 8.8915662651);
}
.status-badge.pending {
  background: rgb(253.3561643836, 242.7397260274, 241.6438356164);
  color: rgb(213.698630137, 43.8356164384, 26.301369863);
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
  margin-bottom: 20px;
}
.dataTables_wrapper .dataTables_length select {
  padding: 8px 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  margin: 0 10px;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}
.dataTables_wrapper .dataTables_length select:focus {
  outline: none;
  border-color: #00d084;
}
.dataTables_wrapper .dataTables_filter input {
  padding: 8px 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  margin-left: 10px;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}
.dataTables_wrapper .dataTables_filter input:focus {
  outline: none;
  border-color: #00d084;
  box-shadow: 0 0 0 3px rgba(0, 208, 132, 0.1);
}
.dataTables_wrapper .dataTables_info {
  padding-top: 20px;
  color: #666;
  font-size: 14px;
}
.dataTables_wrapper .dataTables_paginate {
  padding-top: 20px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  padding: 8px 16px;
  margin: 0 4px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  color: #333 !important;
  transition: all 0.3s ease;
  cursor: pointer;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: #00d084;
  color: #ffffff !important;
  border-color: #00d084;
  transform: translateY(-2px);
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: #00d084;
  color: #ffffff !important;
  border-color: #00d084;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
  background: #ffffff;
  color: #333 !important;
  border-color: #e0e0e0;
  transform: none;
}

.dataTables_empty .empty-state {
  text-align: center;
  padding: 60px 20px;
}
@media (max-width: 576px) {
  .dataTables_empty .empty-state {
    padding: 40px 20px;
  }
}
.dataTables_empty .empty-state .empty-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00d084, #00b872);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
  color: #ffffff;
}
@media (max-width: 576px) {
  .dataTables_empty .empty-state .empty-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
}
.dataTables_empty .empty-state h3 {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  .dataTables_empty .empty-state h3 {
    font-size: 20px;
  }
}
.dataTables_empty .empty-state p {
  color: #666;
  font-size: 15px;
}

@media (max-width: 768px) {
  .datatable-container .dataTables_wrapper .dataTables_length,
  .datatable-container .dataTables_wrapper .dataTables_filter {
    text-align: center;
    margin-bottom: 15px;
  }
  .datatable-container .dataTables_wrapper .dataTables_info,
  .datatable-container .dataTables_wrapper .dataTables_paginate {
    text-align: center;
  }
  .datatable-container .dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 6px 12px;
    font-size: 13px;
  }
}
.tab-header {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .tab-header {
    gap: 8px;
  }
}
.tab-header .tab-btn {
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  padding: 12px 28px;
  background: #ffffff;
  color: #333;
  border: 2px solid #e0e0e0;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  .tab-header .tab-btn {
    padding: 10px 20px;
    font-size: 14px;
    flex: 1;
    min-width: calc(50% - 4px);
  }
}
.tab-header .tab-btn:hover {
  background: rgb(208, 255, 237.8269230769);
  border-color: #00d084;
  color: #00d084;
  transform: translateY(-2px);
}
.tab-header .tab-btn.active {
  background: #00d084;
  color: #ffffff;
  border-color: #00d084;
  box-shadow: 0 6px 20px rgba(0, 208, 132, 0.3);
}
.tab-header .tab-btn.active:hover {
  background: #00b872;
  border-color: #00b872;
  color: #ffffff;
}

#examRepeater {
  margin-bottom: 20px;
}
#examRepeater .exam-item {
  border: 1px dashed #d1d5db;
  border-radius: 8px;
  padding: 15px;
  background: #f9fafb;
  position: relative;
  transition: all 0.2s ease;
  margin-bottom: 20px;
}
#examRepeater .exam-item:hover {
  background: #f3f4f6;
}
#examRepeater .exam-item .btn-danger {
  margin-top: 10px;
}

.dealer-report-container .report-card {
  background: #ffffff;
  border-radius: 20px;
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.dealer-report-container .report-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.dealer-report-container .report-card .report-card-header {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: #ffffff;
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 768px) {
  .dealer-report-container .report-card .report-card-header {
    padding: 20px;
  }
}
.dealer-report-container .report-card .report-card-header:hover {
  background: linear-gradient(135deg, rgb(53.0483870968, 74.75, 96.4516129032), rgb(61.0821917808, 85.75, 110.4178082192));
}
.dealer-report-container .report-card .report-card-header.active {
  background: linear-gradient(135deg, #00d084, #00b872);
  box-shadow: 0 4px 12px rgba(0, 208, 132, 0.3);
}
.dealer-report-container .report-card .report-card-header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 576px) {
  .dealer-report-container .report-card .report-card-header .header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.dealer-report-container .report-card .report-card-header .header-content .header-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .dealer-report-container .report-card .report-card-header .header-content .header-title {
    font-size: 18px;
  }
}
.dealer-report-container .report-card .report-card-header .header-content .header-title i {
  font-size: 24px;
  opacity: 0.9;
}
.dealer-report-container .report-card .report-card-header .header-content .header-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 576px) {
  .dealer-report-container .report-card .report-card-header .header-content .header-info {
    width: 100%;
    justify-content: space-between;
  }
}
.dealer-report-container .report-card .report-card-header .header-content .header-info .total-students {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.dealer-report-container .report-card .report-card-header .header-content .header-info .collapse-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
  opacity: 0.8;
}
.dealer-report-container .report-card .report-card-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .dealer-report-container .report-card .report-card-body {
    padding: 0 20px;
  }
}
.dealer-report-container .report-card .report-card-body.active {
  max-height: none;
  opacity: 1;
  padding: 30px;
  animation: slideDown 0.4s ease;
}
@media (max-width: 768px) {
  .dealer-report-container .report-card .report-card-body.active {
    padding: 20px;
  }
}
.dealer-report-container .report-card .report-card-body .branch-section {
  margin-bottom: 40px;
}
.dealer-report-container .report-card .report-card-body .branch-section:last-child {
  margin-bottom: 0;
}
.dealer-report-container .report-card .report-card-body .branch-section .branch-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: linear-gradient(to right, rgba(0, 208, 132, 0.1), transparent);
  border-left: 4px solid #00d084;
  border-radius: 12px;
  margin-bottom: 25px;
  font-size: 16px;
  color: #2c3e50;
}
@media (max-width: 768px) {
  .dealer-report-container .report-card .report-card-body .branch-section .branch-header {
    padding: 12px 15px;
    font-size: 14px;
  }
}
.dealer-report-container .report-card .report-card-body .branch-section .branch-header i {
  color: #00d084;
  font-size: 18px;
}
.dealer-report-container .report-card .report-card-body .branch-section .branch-header span {
  color: #666;
  font-weight: 500;
}
.dealer-report-container .report-card .report-card-body .branch-section .branch-header strong {
  color: #2c3e50;
  font-weight: 700;
}
.dealer-report-container .report-card .report-card-body .branch-section .time-section {
  margin-bottom: 30px;
  background: #f9fafb;
  border-radius: 16px;
  padding: 20px;
}
@media (max-width: 768px) {
  .dealer-report-container .report-card .report-card-body .branch-section .time-section {
    padding: 15px;
  }
}
.dealer-report-container .report-card .report-card-body .branch-section .time-section:last-child {
  margin-bottom: 0;
}
.dealer-report-container .report-card .report-card-body .branch-section .time-section .time-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 12px 18px;
  background: #ffffff;
  border-radius: 10px;
  border: 2px solid #e0e0e0;
  font-size: 15px;
}
@media (max-width: 768px) {
  .dealer-report-container .report-card .report-card-body .branch-section .time-section .time-header {
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 15px;
    font-size: 14px;
  }
}
.dealer-report-container .report-card .report-card-body .branch-section .time-section .time-header i {
  color: #f39c12;
  font-size: 16px;
}
.dealer-report-container .report-card .report-card-body .branch-section .time-section .time-header span {
  color: #666;
  font-weight: 500;
}
.dealer-report-container .report-card .report-card-body .branch-section .time-section .time-header span:first-of-type {
  margin-right: 5px;
}
.dealer-report-container .report-card .report-card-body .branch-section .time-section .time-header strong {
  color: #2c3e50;
  font-weight: 700;
  margin-right: auto;
}
.dealer-report-container .report-card .report-card-body .branch-section .time-section .time-header .student-count {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: #00d084;
  color: #ffffff;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-left: auto;
}
@media (max-width: 768px) {
  .dealer-report-container .report-card .report-card-body .branch-section .time-section .time-header .student-count {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
}
.dealer-report-container .report-card .report-card-body .branch-section .time-section .datatable-container {
  background: #ffffff;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.dealer-report-container .report-card .report-card-body .branch-section .time-section .datatable-container table.dataTable {
  margin: 0;
}
.dealer-report-container .report-card .report-card-body .branch-section .time-section .datatable-container table.dataTable thead th {
  background: linear-gradient(135deg, rgb(53.0483870968, 74.75, 96.4516129032), #2c3e50);
  font-size: 12px;
  padding: 15px 12px;
}
@media (max-width: 768px) {
  .dealer-report-container .report-card .report-card-body .branch-section .time-section .datatable-container table.dataTable thead th {
    padding: 12px 8px;
    font-size: 11px;
  }
}
.dealer-report-container .report-card .report-card-body .branch-section .time-section .datatable-container table.dataTable thead th:first-child {
  border-radius: 12px 0 0 0;
}
.dealer-report-container .report-card .report-card-body .branch-section .time-section .datatable-container table.dataTable thead th:last-child {
  border-radius: 0 12px 0 0;
}
.dealer-report-container .report-card .report-card-body .branch-section .time-section .datatable-container table.dataTable tbody td {
  padding: 14px 12px;
  font-size: 14px;
}
@media (max-width: 768px) {
  .dealer-report-container .report-card .report-card-body .branch-section .time-section .datatable-container table.dataTable tbody td {
    padding: 10px 8px;
    font-size: 12px;
  }
}
.dealer-report-container .report-card .report-card-body .branch-section .time-section .datatable-container table.dataTable tbody td:first-child {
  font-weight: 600;
  color: #666;
}
.dealer-report-container .report-card .report-card-body .branch-section .time-section .datatable-container table.dataTable tbody tr:hover {
  background: rgb(197.8, 255, 234.1);
}
.dealer-report-container .report-card .report-card-body .branch-section .time-section .datatable-container table.dataTable tbody tr:last-child td {
  border-bottom: none;
}
.dealer-report-container .report-card .report-card-body .branch-section .time-section .datatable-container table.dataTable tbody tr:last-child td:first-child {
  border-radius: 0 0 0 12px;
}
.dealer-report-container .report-card .report-card-body .branch-section .time-section .datatable-container table.dataTable tbody tr:last-child td:last-child {
  border-radius: 0 0 12px 0;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .dealer-report-container .report-card .time-section .datatable-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .dealer-report-container .report-card .time-section .datatable-container table.dataTable {
    min-width: 600px;
  }
}
@media print {
  .dealer-report-container .report-card {
    page-break-inside: avoid;
    margin-bottom: 20px;
    box-shadow: none;
  }
  .dealer-report-container .report-card .report-card-header {
    background: #2c3e50 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .dealer-report-container .report-card .report-card-header .collapse-icon {
    display: none;
  }
  .dealer-report-container .report-card .report-card-body {
    max-height: none !important;
    opacity: 1 !important;
    padding: 30px !important;
  }
  .dealer-report-container .report-card .time-section {
    page-break-inside: avoid;
  }
  .dealer-report-container .report-card .time-section .datatable-container {
    box-shadow: none;
  }
  .page-header a {
    display: none;
  }
}
.table-management-wrapper {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 0;
}
.table-management-wrapper .nav-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 0;
  border-bottom: none;
  padding: 0;
  list-style: none;
  background: #f5f7fa;
}
@media (max-width: 768px) {
  .table-management-wrapper .nav-tabs {
    flex-wrap: wrap;
  }
}
.table-management-wrapper .nav-tabs .nav-item {
  list-style: none;
  flex: 1;
}
@media (max-width: 576px) {
  .table-management-wrapper .nav-tabs .nav-item {
    flex: 1 1 50%;
  }
}
.table-management-wrapper .nav-tabs .nav-item .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 24px;
  background: transparent;
  color: #666;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
  width: 100%;
}
@media (max-width: 768px) {
  .table-management-wrapper .nav-tabs .nav-item .nav-link {
    padding: 15px 20px;
    font-size: 14px;
    gap: 6px;
  }
}
@media (max-width: 576px) {
  .table-management-wrapper .nav-tabs .nav-item .nav-link {
    padding: 12px 10px;
    font-size: 13px;
  }
  .table-management-wrapper .nav-tabs .nav-item .nav-link i {
    font-size: 14px;
  }
}
.table-management-wrapper .nav-tabs .nav-item .nav-link i {
  font-size: 18px;
  transition: all 0.3s ease;
}
.table-management-wrapper .nav-tabs .nav-item .nav-link:hover {
  background: rgba(0, 208, 132, 0.05);
  color: #00d084;
  border-bottom-color: rgba(0, 208, 132, 0.3);
}
.table-management-wrapper .nav-tabs .nav-item .nav-link.active {
  background: #ffffff;
  color: #00d084;
  border-bottom-color: #00d084;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}
.table-management-wrapper .nav-tabs .nav-item .nav-link.active i {
  color: #00d084;
}
.table-management-wrapper .tab-content {
  background: #ffffff;
  padding: 30px;
  min-height: 500px;
}
@media (max-width: 768px) {
  .table-management-wrapper .tab-content {
    padding: 20px;
  }
}
@media (max-width: 576px) {
  .table-management-wrapper .tab-content {
    padding: 15px;
  }
}
.table-management-wrapper .tab-content .tab-pane {
  display: none;
  animation: fadeInUp 0.4s ease;
}
.table-management-wrapper .tab-content .tab-pane.active {
  display: block;
}
.table-management-wrapper .tab-content .tab-pane .btn-primary {
  padding: 14px 32px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #00d084;
  color: #ffffff;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 208, 132, 0.2);
}
@media (max-width: 576px) {
  .table-management-wrapper .tab-content .tab-pane .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
  }
}
.table-management-wrapper .tab-content .tab-pane .btn-primary i {
  font-size: 14px;
}
.table-management-wrapper .tab-content .tab-pane .btn-primary:hover {
  background: #00b872;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 208, 132, 0.3);
}
.table-management-wrapper .tab-content .tab-pane .btn-primary:active {
  transform: translateY(0);
}
.table-management-wrapper table td {
  text-align: center;
}

.swal2-popup {
  border-radius: 20px !important;
  padding: 40px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
}
@media (max-width: 576px) {
  .swal2-popup {
    padding: 30px 20px !important;
    width: 90% !important;
  }
}
.swal2-popup .swal2-title {
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #2c3e50 !important;
  margin-bottom: 30px !important;
  font-family: "Poppins", sans-serif !important;
}
@media (max-width: 576px) {
  .swal2-popup .swal2-title {
    font-size: 22px !important;
    margin-bottom: 20px !important;
  }
}
.swal2-popup .swal2-html-container {
  margin: 0 !important;
  padding: 0 !important;
}
.swal2-popup .swal2-html-container label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
  text-align: left;
}
.swal2-popup .swal2-html-container label span {
  color: #e74c3c;
}
.swal2-popup .swal2-html-container .swal2-select,
.swal2-popup .swal2-html-container .swal2-input {
  width: 100% !important;
  padding: 14px 18px !important;
  border: 2px solid #e0e0e0 !important;
  border-radius: 12px !important;
  font-size: 15px !important;
  font-family: "Inter", sans-serif !important;
  transition: all 0.3s ease !important;
  margin: 0 0 20px 0 !important;
  box-sizing: border-box !important;
  background: #ffffff !important;
}
@media (max-width: 576px) {
  .swal2-popup .swal2-html-container .swal2-select,
  .swal2-popup .swal2-html-container .swal2-input {
    padding: 12px 16px !important;
    font-size: 14px !important;
  }
}
.swal2-popup .swal2-html-container .swal2-select:focus,
.swal2-popup .swal2-html-container .swal2-input:focus {
  outline: none !important;
  border-color: #00d084 !important;
  box-shadow: 0 0 0 3px rgba(0, 208, 132, 0.1) !important;
}
.swal2-popup .swal2-html-container .swal2-select::-moz-placeholder, .swal2-popup .swal2-html-container .swal2-input::-moz-placeholder {
  color: #999 !important;
}
.swal2-popup .swal2-html-container .swal2-select::placeholder,
.swal2-popup .swal2-html-container .swal2-input::placeholder {
  color: #999 !important;
}
.swal2-popup .swal2-html-container .swal2-select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 15px center !important;
  padding-right: 40px !important;
}
.swal2-popup .swal2-actions {
  margin-top: 30px !important;
  gap: 15px !important;
  flex-wrap: wrap !important;
}
@media (max-width: 576px) {
  .swal2-popup .swal2-actions {
    flex-direction: column-reverse !important;
    width: 100%;
  }
}
.swal2-popup .swal2-actions .swal2-confirm,
.swal2-popup .swal2-actions .swal2-cancel {
  padding: 14px 32px !important;
  border-radius: 50px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  margin: 0 !important;
  box-shadow: none !important;
}
@media (max-width: 576px) {
  .swal2-popup .swal2-actions .swal2-confirm,
  .swal2-popup .swal2-actions .swal2-cancel {
    width: 100% !important;
    padding: 12px 24px !important;
    font-size: 15px !important;
  }
}
.swal2-popup .swal2-actions .swal2-confirm {
  background: #00d084 !important;
  color: #ffffff !important;
}
.swal2-popup .swal2-actions .swal2-confirm:hover {
  background: #00b872 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 208, 132, 0.3) !important;
}
.swal2-popup .swal2-actions .swal2-confirm:focus {
  box-shadow: 0 0 0 3px rgba(0, 208, 132, 0.2) !important;
}
.swal2-popup .swal2-actions .swal2-cancel {
  background: transparent !important;
  color: #333 !important;
  border: 2px solid #e0e0e0 !important;
}
.swal2-popup .swal2-actions .swal2-cancel:hover {
  background: #f8f9fa !important;
  border-color: #333 !important;
}
.swal2-popup .swal2-actions .swal2-cancel:focus {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1) !important;
}
.swal2-popup .swal2-validation-message {
  background: #fef2f2 !important;
  border: 1px solid #fecaca !important;
  color: #991b1b !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  margin-top: 10px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

.swal2-container {
  z-index: 9999 !important;
}

.swal2-backdrop-show {
  background: rgba(0, 0, 0, 0.6) !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.loading .spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #e0e0e0;
  border-top-color: #00d084;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100px);
  }
}
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-20 {
  margin-bottom: 20px;
}

.hidden {
  display: none;
}/*# sourceMappingURL=styles.css.map */