.admin-layout-package {
  min-height: 100vh;
}
.admin-layout-package .admin-layout {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar-package {
  width: 300px;
  background: white;
  border-right: 1px solid #e1e5e5;
  position: fixed;
  height: 100vh;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  scrollbar-width: thin;
  scrollbar-color: #1b703f #f1f1f1;
}
.admin-sidebar-package .card-add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #28a745;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  font-size: 12px;
  transition: all 0.2s ease;
}
.admin-sidebar-package .card-add-btn:hover {
  background: #218838;
  transform: scale(1.1);
  color: white;
  text-decoration: none;
}
.admin-sidebar-package .card-add-btn:focus {
  outline: 2px solid #28a745;
  outline-offset: 2px;
}
.admin-sidebar-package::-webkit-scrollbar {
  width: 6px;
}
.admin-sidebar-package::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.admin-sidebar-package::-webkit-scrollbar-thumb {
  background: #1b703f;
  border-radius: 3px;
}
.admin-sidebar-package::-webkit-scrollbar-thumb:hover {
  background: rgb(17.0935251799, 70.9064748201, 39.8848920863);
}
.admin-sidebar-package .sidebar-header {
  padding: 20px;
  border-bottom: 1px solid #e1e3e5;
  flex-shrink: 0;
  background: white;
  position: relative;
  z-index: 1;
}
.admin-sidebar-package .sidebar-user-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}
.admin-sidebar-package .sidebar-user-info .user-name {
  font-size: 16px;
  font-weight: 600;
  color: #202223;
  margin: 0;
}
.admin-sidebar-package .sidebar-user-info .member-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  background: #d4edda;
  color: #1b703f;
  font-size: 10px;
  border: 1px solid #27ae60;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 12px;
  width: -moz-fit-content;
  width: fit-content;
}
.admin-sidebar-package .sidebar-user-info .member-badge.member-free {
  background: #f8f9fa;
  color: #6c757d;
  border-color: #dee2e6;
}
.admin-sidebar-package .sidebar-user-info .member-badge.member-basic {
  background: #d1ecf1;
  color: #0c5460;
  border-color: #bee5eb;
}
.admin-sidebar-package .sidebar-user-info .member-badge.member-premium {
  background: #d4edda;
  color: #155724;
  border-color: #c3e6cb;
}
.admin-sidebar-package .sidebar-user-info .member-badge.member-family {
  background: #f3e5f5;
  color: #4a148c;
  border-color: #e1bee7;
}
.admin-sidebar-package .sidebar-user-info .member-badge.member-basic-trial, .admin-sidebar-package .sidebar-user-info .member-badge.member-premium-trial, .admin-sidebar-package .sidebar-user-info .member-badge.member-family-trial {
  background: #fff3cd;
  color: #856404;
  border-color: #ffeaa7;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
.admin-sidebar-package .sidebar-logo {
  font-size: 18px;
  font-weight: 700;
  color: #202223;
  text-decoration: none;
  margin: 0;
}
.admin-sidebar-package .sidebar-logo:hover {
  color: rgba(224, 216, 169, 0.568627451);
  text-decoration: none;
}
.admin-sidebar-package .sidebar-nav {
  padding: 0;
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #1b703f #f1f1f1;
}
.admin-sidebar-package .sidebar-nav::-webkit-scrollbar {
  width: 6px;
}
.admin-sidebar-package .sidebar-nav::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.admin-sidebar-package .sidebar-nav::-webkit-scrollbar-thumb {
  background: #1b703f;
  border-radius: 3px;
}
.admin-sidebar-package .sidebar-nav::-webkit-scrollbar-thumb:hover {
  background: rgb(17.0935251799, 70.9064748201, 39.8848920863);
}
.admin-sidebar-package .nav-section {
  margin-bottom: 0px;
}
.admin-sidebar-package .nav-section-title {
  display: none;
}
.admin-sidebar-package .nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: #6d7175;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}
.admin-sidebar-package .nav-item:hover {
  background: #d4edda;
  color: #000000;
}
.admin-sidebar-package .nav-item.active {
  background: #d4edda;
  color: #000000;
  border-left-color: #000000;
}
.admin-sidebar-package .nav-item i {
  width: 16px;
  text-align: center;
}

.admin-topbar-package {
  background: white;
  border-bottom: 1px solid #e1e3e5;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
.admin-topbar-package .topbar-title-with-action {
  display: flex;
  gap: 20px;
  align-items: center;
}
.admin-topbar-package .topbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}
.admin-topbar-package .topbar-title {
  font-size: 20px;
  font-weight: 600;
  color: #202223;
  margin: 0;
}
.admin-topbar-package .topbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin-main-package {
  margin-left: 300px;
  min-height: 100vh;
  background: #f8f9fa;
  width: calc(100% - 300px);
}
.admin-main-package .content-area {
  padding: 32px;
}
@media (max-width: 1179px) {
  .admin-main-package {
    margin-left: 0;
    width: 100%;
  }
  .admin-main-package .content-area {
    padding: 20px;
  }
}

.admin-user-menu-package {
  position: relative;
}
.admin-user-menu-package .user-menu-btn {
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
}
.admin-user-menu-package .user-menu-btn:hover {
  background-color: #f1f5f9;
  color: #334155;
}
.admin-user-menu-package .user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(224, 216, 169, 0.3294117647);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  border: 1px solid rgba(224, 216, 169, 0.3294117647);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.admin-user-menu-package .user-avatar:hover {
  background: #d4edda;
  color: #1b703f;
  text-decoration: none;
  border: 1px solid #d4edda;
}
.admin-user-menu-package .user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border: 1px solid #e1e3e5;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  z-index: 1000;
  display: none;
  overflow: hidden;
}
.admin-user-menu-package .user-dropdown.show {
  display: block;
}
.admin-user-menu-package .dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #202223;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s;
}
.admin-user-menu-package .dropdown-item:hover {
  background-color: #f6f6f7;
  color: rgba(224, 216, 169, 0.568627451);
}
.admin-user-menu-package .dropdown-divider {
  height: 1px;
  background-color: #e1e3e5;
  margin: 0;
}

.admin-btn-package {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}
.admin-btn-package--primary {
  background: #003670;
  color: white;
}
.admin-btn-package--primary:hover {
  background: #004db3;
  color: white;
  text-decoration: none;
}
.admin-btn-package--secondary {
  background: #f6f6f7;
  color: #202223;
  border-color: #c9cccf;
}
.admin-btn-package--secondary:hover {
  background: #e7e7e9;
}
.admin-btn-package--danger {
  background: #d72c0d;
  color: white;
}
.admin-btn-package--danger:hover {
  background: #bf2600;
}
.admin-btn-package--header {
  background: #003670;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s;
}
.admin-btn-package--header:hover {
  background: #004db3;
  color: white;
  text-decoration: none;
}
.admin-btn-package--circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #f6f6f7;
  border: 1px solid #e1e3e5;
  color: #6d7175;
  transition: all 0.2s ease;
}
.admin-btn-package--circle:hover {
  background: #e7e7e9;
  color: #202223;
  transform: translateY(-1px);
}
.admin-btn-package--circle.globe-btn--primary {
  background: rgba(224, 216, 169, 0.3294117647);
  color: #000000;
  border-color: rgba(224, 216, 169, 0.3294117647);
}
.admin-btn-package--circle.globe-btn--primary:hover {
  background: #d4edda;
  border-color: #d4edda;
}
.admin-btn-package--circle.hamburger-menu-btn--blue {
  background: rgba(224, 216, 169, 0.568627451);
  color: white;
  border-color: rgba(224, 216, 169, 0.568627451);
}
.admin-btn-package--circle.hamburger-menu-btn--blue:hover {
  background: #004db3;
  border-color: #004db3;
}
.admin-btn-package--circle.hamburger-menu-btn--blue .hamburger-line {
  background-color: white;
}
.admin-btn-package--circle i {
  font-size: 16px;
}

.admin-card-package {
  background: white;
  border: 1px solid #e1e3e5;
  border-radius: 12px;
  overflow: hidden;
}
.admin-card-package .card-header {
  padding: 20px 60px;
  border-bottom: 1px solid #e1e3e5;
  display: flex;
  align-items: center;
  background: #d4edda;
  color: #ffffff;
  /* border: 2px solid #1b703f; */
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  /* border-bottom-right-radius: 40px; */
  /* border-bottom-left-radius: 40px; */
  margin: 0px;
  justify-content: space-between;
}
.admin-card-package .card-title {
  font-size: 16px;
  font-weight: 600;
  color: #202223;
}
.admin-card-package .card-body {
  padding: 0px;
}

.card-title-with-action {
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #d4edda;
  color: #1b703f;
  border-radius: 50%;
  text-decoration: none;
  font-size: 12px;
  transition: all 0.2s ease;
}
.card-add-btn:hover {
  background: #d4EDDA;
  transform: scale(1.1);
  color: #1b703f;
  text-decoration: none;
}
.card-add-btn:focus {
  background: #d4EDDA;
  transform: scale(1.1);
  color: #1b703f;
  text-decoration: none;
}

.admin-card-package .card-header .card-title-with-action {
  margin: 0;
}

.d-flex .card-title-with-action {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-stats-package .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.admin-stats-package .stat-card {
  background: white;
  border: 1px solid #e1e3e5;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.admin-stats-package .stat-value {
  font-size: 32px;
  font-weight: 700;
  color: #202223;
  margin-bottom: 4px;
}
.admin-stats-package .stat-label {
  font-size: 14px;
  color: #6d7175;
}

.admin-table-package .table-responsive {
  overflow-x: auto;
}
.admin-table-package .table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.admin-table-package .table th, .admin-table-package .table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #e1e3e5;
}
.admin-table-package .table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #202223;
}
.admin-table-package .table td {
  color: #6d7175;
}

.admin-products-package .sortable {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
}
.admin-products-package .sortable:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.admin-products-package .sort-icon {
  margin-left: 5px;
  font-size: 12px;
  opacity: 0.7;
}
.admin-products-package .page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.admin-products-package .page-actions {
  margin-left: auto;
}
.admin-products-package .alert {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
}
.admin-products-package .alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.admin-products-package .alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.admin-products-package .card-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.admin-products-package .search-input {
  padding: 8px 12px;
  border: 1px solid #c9cccf;
  border-radius: 6px;
  font-size: 14px;
  width: 250px;
}
.admin-products-package .table-container {
  max-height: 70vh;
}
.admin-products-package .products-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.admin-products-package .admin-table-header {
  background: #000000;
}
.admin-products-package .admin-table-header th {
  color: white;
}
.admin-products-package .products-table th,
.admin-products-package .products-table td {
  padding: 8px 12px;
  text-align: center;
  border-bottom: 1px solid #e1e3e5;
  vertical-align: middle;
}
.admin-products-package .product-cell {
  text-align: left;
}
.admin-products-package .product-image {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  border: 1px solid #e1e3e5;
}
.admin-products-package .product-placeholder {
  width: 50px;
  height: 50px;
  background: #f6f6f7;
  border: 1px solid #e1e3e5;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6d7175;
  font-size: 16px;
}
.admin-products-package .product-name,
.admin-products-package .product-description {
  text-align: left;
}
.admin-products-package .status-badge {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  text-transform: capitalize;
}
.admin-products-package .status-active {
  background: #d4edda;
  color: #155724;
}
.admin-products-package .status-inactive {
  background: #f8d7da;
  color: #721c24;
}
.admin-products-package .action-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}
.admin-products-package .btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  border: 1px solid #c9cccf;
  background: white;
  color: #6d7175;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}
.admin-products-package .btn-icon:hover {
  background: #f6f6f7;
  color: #202223;
  text-decoration: none;
}
.admin-products-package .btn-icon.btn-edit:hover {
  background: #e7f3ff;
  color: #005bd3;
  border-color: #005bd3;
}
.admin-products-package .btn-icon.btn-delete:hover {
  background: #ffeaea;
  color: #d72c0d;
  border-color: #d72c0d;
}
.admin-products-package .editable {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 3px;
  transition: background-color 0.2s;
}
.admin-products-package .editable:hover {
  background: #f6f6f7;
}
.admin-products-package .editable:focus {
  outline: 2px solid #005bd3;
  background: white;
}
@media (max-width: 768px) {
  .admin-products-package .page-header {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .admin-products-package .card-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .admin-products-package .search-input {
    width: 100%;
  }
  .admin-products-package .products-table {
    font-size: 12px;
  }
  .admin-products-package .products-table th,
  .admin-products-package .products-table td {
    padding: 8px 6px;
  }
  .admin-products-package .product-description {
    max-width: 150px;
  }
}

.admin-form-package .form-group {
  margin-bottom: 20px;
}
.admin-form-package .form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #202223;
}
.admin-form-package .form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #c9cccf;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s ease;
}
.admin-form-package .form-control:focus {
  outline: none;
  border-color: #005bd3;
}
.admin-form-package .form-select {
  width: 100%;
  padding: 12px;
  border: 1px solid #c9cccf;
  border-radius: 6px;
  font-size: 14px;
  background: white;
  transition: border-color 0.2s ease;
}
.admin-form-package .form-select:focus {
  outline: none;
  border-color: #005bd3;
}
.admin-form-package .form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #c9cccf;
  border-radius: 6px;
  font-size: 14px;
  resize: vertical;
  min-height: 100px;
  transition: border-color 0.2s ease;
}
.admin-form-package .form-textarea:focus {
  outline: none;
  border-color: #005bd3;
}

.hamburger-menu-btn {
  background: none !important;
  border: none !important;
  cursor: pointer;
}
.hamburger-menu-btn .hamburger-icon {
  width: 20px;
  height: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger-menu-btn .hamburger-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: #6d7175;
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}
.hamburger-menu-btn .hamburger-icon span:nth-child(1) {
  transform-origin: top left;
}
.hamburger-menu-btn .hamburger-icon span:nth-child(3) {
  transform-origin: bottom left;
}
.hamburger-menu-btn:hover .hamburger-icon span {
  background: #202223;
}
.hamburger-menu-btn.active .hamburger-icon span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
}
.hamburger-menu-btn.active .hamburger-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger-menu-btn.active .hamburger-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -3px);
}

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

.slide-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  background: white;
  z-index: 1999;
  transition: right 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}
.slide-menu.open {
  right: 0;
}
.slide-menu .slide-menu-header {
  padding: 20px;
  border-bottom: 1px solid #e1e3e5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8f9fa;
}
.slide-menu .slide-menu-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #202223;
}
.slide-menu .slide-menu-header .slide-menu-close {
  background: none;
  border: none;
  color: #6d7175;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.slide-menu .slide-menu-header .slide-menu-close:hover {
  background: #e1e3e5;
  color: #202223;
}
.slide-menu .slide-menu-header .slide-menu-close i {
  font-size: 16px;
}
.slide-menu .slide-menu-content {
  padding: 20px 0;
}
.slide-menu .slide-menu-content .nav-section {
  margin-bottom: 32px;
}
.slide-menu .slide-menu-content .nav-section:last-child {
  margin-bottom: 0;
}
.slide-menu .slide-menu-content .nav-section-title {
  font-size: 12px;
  font-weight: 600;
  color: #6d7175;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  padding: 0 20px;
}
.slide-menu .slide-menu-content .nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: #6d7175;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}
.slide-menu .slide-menu-content .nav-item:hover {
  background: #d4edda;
  color: #000000;
}
.slide-menu .slide-menu-content .nav-item.active {
  background: #d4edda;
  color: #000000;
  border-left-color: #000000;
}
.slide-menu .slide-menu-content .nav-item i {
  width: 16px;
  text-align: center;
}
.slide-menu .slide-menu-content .nav-dropdown {
  position: relative;
}
.slide-menu .slide-menu-content .nav-dropdown .nav-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.slide-menu .slide-menu-content .nav-dropdown .nav-dropdown-toggle .dropdown-chevron {
  transition: transform 0.3s ease;
  font-size: 12px;
  margin-left: auto;
}
.slide-menu .slide-menu-content .nav-dropdown.open .dropdown-chevron {
  transform: rotate(180deg);
}
.slide-menu .slide-menu-content .nav-dropdown .nav-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f8f9fa;
}
.slide-menu .slide-menu-content .nav-dropdown .nav-dropdown-menu .nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px 10px 50px;
  color: #6d7175;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}
.slide-menu .slide-menu-content .nav-dropdown .nav-dropdown-menu .nav-dropdown-item:hover {
  background: #d4edda;
  color: #000000;
}
.slide-menu .slide-menu-content .nav-dropdown .nav-dropdown-menu .nav-dropdown-item.active {
  background: #d4edda;
  color: #000000;
  border-left-color: #000000;
}
.slide-menu .slide-menu-content .nav-dropdown .nav-dropdown-menu .nav-dropdown-item i {
  width: 14px;
  text-align: center;
  font-size: 12px;
}
.slide-menu .slide-menu-content .nav-dropdown.open .nav-dropdown-menu {
  max-height: 200px;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .slide-menu {
    width: 280px;
    right: -280px;
  }
}
@media (min-width: 1179px) {
  .hamburger-menu-btn,
  .hamburger-menu-btn--blue {
    display: none !important;
  }
}
@media (max-width: 1179px) {
  .admin-sidebar-package {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .admin-sidebar-package.open {
    transform: translateX(0);
  }
}
.discount-price {
  color: #e74c3c;
  font-weight: bold;
  font-size: 0.9em;
}

.no-discount {
  color: #95a5a6;
  font-style: italic;
  font-size: 0.85em;
}

.trending-badge {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75em;
  font-weight: bold;
  text-transform: uppercase;
}
.trending-badge.trending-yes {
  background-color: #d4edda;
  color: #1b703f;
}
.trending-badge.trending-no {
  background-color: #f8f9fa;
  color: #6c757d;
}

.discount-price-badge {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  background: #f6f6f7;
  color: #6d7175;
  border: 1px solid #e1e3e5;
  display: inline-block;
  margin-bottom: 4px;
}

.discount-badge {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  text-transform: capitalize;
  background: #f8d7da;
  color: #721c24;
  display: inline-block;
}

.admin-products-package .page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.admin-products-package .page-actions {
  margin-left: auto;
}
.admin-products-package .alert {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
}
.admin-products-package .alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.admin-products-package .alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.admin-products-package .card-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.admin-products-package .search-input {
  padding: 8px 12px;
  border: 1px solid #c9cccf;
  border-radius: 6px;
  font-size: 14px;
  width: 250px;
}
.admin-products-package .table-container {
  max-height: 70vh;
}
.admin-products-package .products-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.admin-products-package .admin-table-header {
  background: #070707;
}
.admin-products-package .admin-table-header th {
  color: white;
  font-size: smaller;
  text-transform: uppercase;
}
.admin-products-package .products-table th,
.admin-products-package .products-table td {
  padding: 16px 12px;
  text-align: center;
  border-bottom: 1px solid #e1e3e5;
  vertical-align: middle;
}
.admin-products-package .product-cell {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.admin-products-package .product-name,
.admin-products-package .product-description {
  text-align: left;
}
.admin-products-package .status-badge {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  text-transform: capitalize;
}
.admin-products-package .status-active {
  background: #d4edda;
  color: #155724;
}
.admin-products-package .status-inactive {
  background: #f8d7da;
  color: #721c24;
}
.admin-products-package .action-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}
.admin-products-package .btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  border: 1px solid #c9cccf;
  background: white;
  color: #6d7175;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}
.admin-products-package .btn-icon:hover {
  background: #f6f6f7;
  color: #202223;
  text-decoration: none;
}
.admin-products-package .btn-icon.btn-edit:hover {
  background: #e7f3ff;
  color: #005bd3;
  border-color: #005bd3;
}
.admin-products-package .btn-icon.btn-delete:hover {
  background: #ffeaea;
  color: #d72c0d;
  border-color: #d72c0d;
}
.admin-products-package .editable {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 3px;
  transition: background-color 0.2s;
}
.admin-products-package .editable:hover {
  background: #f6f6f7;
}
.admin-products-package .editable:focus {
  outline: 2px solid #005bd3;
  background: white;
}
@media (max-width: 768px) {
  .admin-products-package .page-header {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .admin-products-package .card-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .admin-products-package .search-input {
    width: 100%;
  }
  .admin-products-package .products-table {
    font-size: 12px;
  }
  .admin-products-package .products-table th,
  .admin-products-package .products-table td {
    padding: 8px 6px;
  }
  .admin-products-package .product-description {
    max-width: 150px;
    display: none;
  }
}

.admin-form-package .form-group {
  margin-bottom: 20px;
}
.admin-form-package .form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #202223;
}
.admin-form-package .form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #c9cccf;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s ease;
}
.admin-form-package .form-control:focus {
  outline: none;
  border-color: #005bd3;
}
.admin-form-package .form-select {
  width: 100%;
  padding: 12px;
  border: 1px solid #c9cccf;
  border-radius: 6px;
  font-size: 14px;
  background: white;
  transition: border-color 0.2s ease;
}
.admin-form-package .form-select:focus {
  outline: none;
  border-color: #005bd3;
}
.admin-form-package .form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #c9cccf;
  border-radius: 6px;
  font-size: 14px;
  resize: vertical;
  min-height: 100px;
  transition: border-color 0.2s ease;
}
.admin-form-package .form-textarea:focus {
  outline: none;
  border-color: #005bd3;
}

.hamburger-menu-btn {
  background: none !important;
  border: none !important;
  cursor: pointer;
}
.hamburger-menu-btn .hamburger-icon {
  width: 20px;
  height: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger-menu-btn .hamburger-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: #6d7175;
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}
.hamburger-menu-btn .hamburger-icon span:nth-child(1) {
  transform-origin: top left;
}
.hamburger-menu-btn .hamburger-icon span:nth-child(3) {
  transform-origin: bottom left;
}
.hamburger-menu-btn:hover .hamburger-icon span {
  background: #202223;
}
.hamburger-menu-btn.active .hamburger-icon span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
}
.hamburger-menu-btn.active .hamburger-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger-menu-btn.active .hamburger-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -3px);
}

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

.slide-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  background: white;
  z-index: 1999;
  transition: right 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}
.slide-menu.open {
  right: 0;
}
.slide-menu .slide-menu-header {
  padding: 20px;
  border-bottom: 1px solid #e1e3e5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8f9fa;
}
.slide-menu .slide-menu-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #202223;
}
.slide-menu .slide-menu-header .slide-menu-close {
  background: none;
  border: none;
  color: #6d7175;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.slide-menu .slide-menu-header .slide-menu-close:hover {
  background: #e1e3e5;
  color: #202223;
}
.slide-menu .slide-menu-header .slide-menu-close i {
  font-size: 16px;
}
.slide-menu .slide-menu-content {
  padding: 20px 0;
}
.slide-menu .slide-menu-content .nav-section {
  margin-bottom: 32px;
}
.slide-menu .slide-menu-content .nav-section:last-child {
  margin-bottom: 0;
}
.slide-menu .slide-menu-content .nav-section-title {
  font-size: 12px;
  font-weight: 600;
  color: #6d7175;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  padding: 0 20px;
}
.slide-menu .slide-menu-content .nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: #6d7175;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}
.slide-menu .slide-menu-content .nav-item:hover {
  background: #e7f3ff;
  color: #005bd3;
}
.slide-menu .slide-menu-content .nav-item.active {
  background: #e7f3ff;
  color: #005bd3;
  border-left-color: #005bd3;
}
.slide-menu .slide-menu-content .nav-item i {
  width: 16px;
  text-align: center;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .slide-menu {
    width: 280px;
    right: -280px;
  }
}
@media (min-width: 1180px) {
  .hamburger-menu-btn {
    display: none;
  }
}
@media (max-width: 1179px) {
  .admin-sidebar-package {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .admin-sidebar-package.open {
    transform: translateX(0);
  }
}
.discount-price {
  color: #e74c3c;
  font-weight: bold;
  font-size: 0.9em;
}

.no-discount {
  color: #95a5a6;
  font-style: italic;
  font-size: 0.85em;
}

.trending-badge {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75em;
  font-weight: bold;
  text-transform: uppercase;
}
.trending-badge.trending-yes {
  background-color: #d4edda;
  color: #1b703f;
}
.trending-badge.trending-no {
  background-color: #f8f9fa;
  color: #6c757d;
}

.discount-price-badge {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  background: #f6f6f7;
  color: #6d7175;
  border: 1px solid #e1e3e5;
  display: inline-block;
  margin-bottom: 4px;
}

.discount-badge {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75em;
  font-weight: bold;
  text-transform: uppercase;
  background-color: #d4edda;
  color: #1b703f;
  display: inline-block;
}

.discount-price {
  color: #6d7175;
  font-size: 14px;
  font-weight: 500;
}

.discount-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.vertical-tabs {
  display: flex;
  min-height: 600px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.vertical-tab-nav {
  width: 250px;
  background: #ffffff;
  border-right: 1px solid #e1e3e5;
  padding: 0;
}

.vertical-tab {
  display: block;
  width: 100%;
  padding: 15px 20px;
  background: none;
  border: none;
  text-align: left;
  color: #6c757d;
  text-decoration: none;
  border-bottom: 1px solid #e1e3e5;
  transition: all 0.2s ease;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

.vertical-tab:hover {
  background: #d4edda;
  color: #1b703f;
}

.vertical-tab.active {
  background: #d4edda;
  color: #1b703f;
  border-left: 4px solid #1b703f;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vertical-tab-content {
  flex: 1;
  padding: 30px;
}

.vertical-tab-pane {
  display: none;
}

.vertical-tab-pane.active {
  display: block;
}

.btn {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  transition: all 0.2s ease;
}

.btn-primary {
  background: #007bff;
  color: white;
}

.btn-primary:hover {
  background: #0056b3;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 12px;
}

.btn-secondary {
  background: #f6f6f7;
  color: #202223;
  border: 1px solid #c9cccf;
}

.btn-secondary:hover {
  background: #d4edda;
  color: #1b703f;
}

.btn-danger {
  background: #dc3545;
  color: white;
}

.btn-danger:hover {
  background: #c82333;
}

.card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.card-body {
  padding: 20px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.table th,
.table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #e1e3e5;
}

.table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #374151;
}

.table-responsive {
  overflow-x: auto;
}

.badge {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.bg-info {
  background: #17a2b8;
  color: white;
}

.bg-warning {
  background: #ffc107;
  color: #212529;
}

.bg-secondary {
  background: #6c757d;
  color: white;
}

.d-flex {
  display: flex;
}

.justify-content-between {
  justify-content: space-between;
}

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

.mb-4 {
  margin-bottom: 1.5rem;
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/* ! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #f8fafc;
  }
.container {
  width: 100%;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}
.visible {
  visibility: visible;
}
.collapse {
  visibility: collapse;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.m-0 {
  margin: 0px;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mb-0 {
  margin-bottom: 0px;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.me-2 {
  margin-inline-end: 0.5rem;
}
.me-3 {
  margin-inline-end: 0.75rem;
}
.mt-8 {
  margin-top: 2rem;
}
.block {
  display: block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.h-16 {
  height: 4rem;
}
.w-auto {
  width: auto;
}
.max-w-7xl {
  max-width: 80rem;
}
.border-collapse {
  border-collapse: collapse;
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.border {
  border-width: 1px;
}
.border-b {
  border-bottom-width: 1px;
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.text-center {
  text-align: center;
}
.text-end {
  text-align: end;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.leading-relaxed {
  line-height: 1.625;
}
.text-blue-600 {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-gray-800 {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.text-green-600 {
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}
.text-primary {
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity, 1));
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline {
  outline-style: solid;
}
.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.custom-component {
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
  padding: 1rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.custom-component:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.custom-component .nested-element {
  color: #3b82f6;
}

.hover\:text-gray-900:hover {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}

.hover\:underline:hover {
  text-decoration-line: underline;
}

@media (min-width: 640px) {
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

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