.app-container {
  display: flex;
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  margin-left: 0;
  padding-left: 0;
}

.admin-body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

html.admin-body,
body.admin-body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.navigation {
  width: 280px;
  background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 0;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.navigation::-webkit-scrollbar {
  width: 6px;
}
.navigation::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}
.navigation::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}
.navigation::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.search__eyeglass-icon {
  left: 1.1rem !important;
}

.navigation__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 3px solid transparent;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}
.navigation__link i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}
.navigation__link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-left-color: #f4980d;
  padding-left: 2.25rem;
  transform: translateX(4px);
}
.navigation__link:hover i {
  transform: scale(1.1);
  color: #ffb84d;
}
.navigation__link--current {
  background: rgba(244, 152, 13, 0.2);
  color: #ffb84d;
  border-left-color: #f4980d;
  font-weight: 600;
  box-shadow: inset 0 0 20px rgba(244, 152, 13, 0.1);
}
.navigation__link--current i {
  color: #ffb84d;
}

.navigation__brand {
  padding: 2rem 2rem 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(244, 152, 13, 0.1) 0%, transparent 100%);
}
.navigation__brand a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}
.navigation__brand a:hover {
  color: #ffb84d;
  transform: translateX(2px);
}
.navigation__brand .brand-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f4980d 0%, #d67a0a 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(244, 152, 13, 0.3);
  transition: all 0.3s ease;
}
.navigation__brand .brand-icon:hover {
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 6px 16px rgba(244, 152, 13, 0.4);
}

.navigation__links {
  flex: 1;
  padding: 1rem 0;
}

.navigation__footer {
  margin-top: auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.user-info {
  color: rgba(255, 255, 255, 0.85);
}
.user-info__name {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.user-info__email {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.main-content {
  flex: 1;
  margin-left: 280px;
  padding: 2rem;
  background: transparent;
  min-height: 100vh;
  transition: margin-left 0.3s ease;
}

.main-content__header {
  background: #ffffff;
  padding: 2rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}

.main-content__page-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #6c757d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.main-content__page-title i {
  color: #f4980d;
  -webkit-text-fill-color: #f4980d;
}

.main-content__body {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.button {
  background: linear-gradient(135deg, #f4980d 0%, #d67a0a 100%);
  color: #ffffff;
  border: none;
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(244, 152, 13, 0.25);
}
.button i {
  font-size: 1rem;
}
.button:hover {
  background: linear-gradient(135deg, #d67a0a 0%, rgb(189.6383928571, 108.1116071429, 8.8616071429) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 152, 13, 0.35);
  color: #ffffff;
}
.button:active {
  transform: translateY(0);
}

.button--alt {
  background: transparent;
  color: #f4980d;
  border: 2px solid #f4980d;
  box-shadow: none;
}
.button--alt:hover {
  background: #f4980d;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(244, 152, 13, 0.25);
}

.button--nav {
  margin: 0 2rem 1.5rem;
  text-align: center;
  padding: 0.875rem;
  border-radius: 12px;
  width: calc(100% - 4rem);
  display: block;
  justify-content: center;
}

.button--danger {
  background: linear-gradient(135deg, #dc3545 0%, rgb(189.2151898734, 32.7848101266, 47.7721518987) 100%);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.25);
}
.button--danger:hover {
  background: linear-gradient(135deg, rgb(210.9493670886, 36.5506329114, 53.2594936709) 0%, rgb(167.4810126582, 29.0189873418, 42.2848101266) 100%);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.35);
}

.collection {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.collection thead {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.collection thead th {
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 700;
  color: #1a1a1a;
  border-bottom: 2px solid #e9ecef;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.collection tbody tr {
  border-bottom: 1px solid #e9ecef;
  transition: all 0.2s ease;
}
.collection tbody tr:hover {
  background: linear-gradient(90deg, #f8f9fa 0%, #ffffff 100%);
  transform: scale(1.01);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.collection tbody tr:last-child {
  border-bottom: none;
}

.collection tbody td {
  padding: 1.25rem 1.5rem;
  color: #1a1a1a;
  font-size: 0.95rem;
  vertical-align: middle;
}

.form-group {
  margin-bottom: 1.75rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=number],
.form-group input[type=file],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: #ffffff;
}
.form-group input[type=text]:focus,
.form-group input[type=email]:focus,
.form-group input[type=number]:focus,
.form-group input[type=file]:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #f4980d;
  box-shadow: 0 0 0 4px rgba(244, 152, 13, 0.1);
  transform: translateY(-1px);
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
  font-family: inherit;
}

.field-unit {
  margin-bottom: 2rem;
}
.field-unit__label {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.875rem;
  display: block;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.field-unit__field input[type=text],
.field-unit__field input[type=email],
.field-unit__field input[type=number],
.field-unit__field input[type=file],
.field-unit__field textarea,
.field-unit__field select {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: #ffffff;
}
.field-unit__field input[type=text]:focus,
.field-unit__field input[type=email]:focus,
.field-unit__field input[type=number]:focus,
.field-unit__field input[type=file]:focus,
.field-unit__field textarea:focus,
.field-unit__field select:focus {
  outline: none;
  border-color: #f4980d;
  box-shadow: 0 0 0 4px rgba(244, 152, 13, 0.1);
  transform: translateY(-1px);
}

.search {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  max-width: 450px;
}

.search__input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: #ffffff;
}
.search__input:focus {
  outline: none;
  border-color: #f4980d;
  box-shadow: 0 0 0 4px rgba(244, 152, 13, 0.1);
}

.search__button {
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, #f4980d 0%, #d67a0a 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(244, 152, 13, 0.25);
}
.search__button:hover {
  background: linear-gradient(135deg, #d67a0a 0%, rgb(189.6383928571, 108.1116071429, 8.8616071429) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 152, 13, 0.35);
}

.flash {
  padding: 1.25rem 1.75rem;
  border-radius: 12px;
  margin-bottom: 1.75rem;
  font-weight: 500;
  border-left: 4px solid;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.flash--notice {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
  border-left-color: #28a745;
}

.flash--alert {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  color: #721c24;
  border-left-color: #dc3545;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e9ecef;
}
.pagination a, .pagination span {
  padding: 0.625rem 1.125rem;
  border-radius: 10px;
  text-decoration: none;
  color: #1a1a1a;
  transition: all 0.3s ease;
  font-weight: 500;
  min-width: 40px;
  text-align: center;
}
.pagination a:hover, .pagination span:hover {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #f4980d;
  transform: translateY(-2px);
}
.pagination a.current, .pagination span.current {
  background: linear-gradient(135deg, #f4980d 0%, #d67a0a 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(244, 152, 13, 0.3);
}

.collection-item-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.collection-item-actions a {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.collection-item-actions a i {
  font-size: 0.9rem;
}
.collection-item-actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.collection-item-actions a.button--edit {
  background: linear-gradient(135deg, #007bff 0%, rgb(0, 98.4, 204) 100%);
  color: #ffffff;
}
.collection-item-actions a.button--edit:hover {
  background: linear-gradient(135deg, rgb(0, 110.7, 229.5) 0%, rgb(0, 86.1, 178.5) 100%);
}
.collection-item-actions a.button--delete {
  background: linear-gradient(135deg, #dc3545 0%, rgb(189.2151898734, 32.7848101266, 47.7721518987) 100%);
  color: #ffffff;
}
.collection-item-actions a.button--delete:hover {
  background: linear-gradient(135deg, rgb(210.9493670886, 36.5506329114, 53.2594936709) 0%, rgb(167.4810126582, 29.0189873418, 42.2848101266) 100%);
}
.collection-item-actions a.button--show {
  background: linear-gradient(135deg, #6c757d 0%, rgb(84.3605150215, 91.3905579399, 97.6394849785) 100%);
  color: #ffffff;
}
.collection-item-actions a.button--show:hover {
  background: linear-gradient(135deg, rgb(96.1802575107, 104.19527897, 111.3197424893) 0%, rgb(72.5407725322, 78.5858369099, 83.9592274678) 100%);
}

.empty-state {
  text-align: center;
  padding: 5rem 2rem;
  color: #6c757d;
}
.empty-state__icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  opacity: 0.4;
  color: #f4980d;
}
.empty-state__message {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
  font-weight: 500;
}

.main-content__body .attribute-data {
  padding: 1.25rem 0;
  border-bottom: 1px solid #e9ecef;
  transition: all 0.2s ease;
}
.main-content__body .attribute-data:hover {
  background: rgba(244, 152, 13, 0.02);
  padding-left: 0.5rem;
  border-left: 3px solid #f4980d;
}
.main-content__body .attribute-data:last-child {
  border-bottom: none;
}

.main-content__body .attribute-data__label {
  font-weight: 700;
  color: #6c757d;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.625rem;
}

.main-content__body .attribute-data__value {
  color: #1a1a1a;
  font-size: 1.05rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .navigation {
    width: 100%;
    height: auto;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }
  .main-content {
    margin-left: 0;
    padding: 1.5rem 1rem;
  }
  .main-content__header {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }
  .main-content__page-title {
    font-size: 1.5rem;
  }
  .main-content__body {
    padding: 1.5rem;
  }
  .collection {
    font-size: 0.85rem;
  }
  .collection thead th,
  .collection tbody td {
    padding: 0.875rem 1rem;
  }
}
.main-content__body .attribute-data:first-child {
  padding-top: 0;
}

.navigation,
.main-content {
  scroll-behavior: smooth;
}

.button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.button:focus-visible,
.navigation__link:focus-visible {
  outline: 3px solid #f4980d;
  outline-offset: 2px;
}

/*# sourceMappingURL=/assets/admin-dbdd8f48.css.map */
