/* [project]/src/app/admin/admin.module.css [app-client] (css) */
.admin-module__4WpgRW__adminContainer {
  color: #0f172a;
  background-color: #f8fafc;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
  display: grid;
}

@media (max-width: 1024px) {
  .admin-module__4WpgRW__adminContainer {
    grid-template-columns: 1fr;
  }
}

.admin-module__4WpgRW__sidebar {
  background: #fff;
  border-right: 1px solid #e2e8f0;
  flex-direction: column;
  padding: 1.5rem;
  display: flex;
}

@media (max-width: 1024px) {
  .admin-module__4WpgRW__sidebar {
    display: none;
  }
}

.admin-module__4WpgRW__sidebarHeader {
  margin-bottom: 2rem;
  padding-left: .5rem;
}

.admin-module__4WpgRW__logo {
  color: #0f172a;
  letter-spacing: -.02em;
  font-size: 1.25rem;
  font-weight: 700;
}

.admin-module__4WpgRW__sidebarNav {
  flex-direction: column;
  gap: .25rem;
  display: flex;
}

.admin-module__4WpgRW__navItem {
  color: #64748b;
  border-radius: .375rem;
  align-items: center;
  gap: .75rem;
  padding: .5rem .75rem;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .2s, color .2s;
  display: flex;
}

.admin-module__4WpgRW__navItem:hover {
  color: #0f172a;
  background: #f1f5f9;
}

.admin-module__4WpgRW__navItem.admin-module__4WpgRW__active {
  color: #0f172a;
  background: #f1f5f9;
  font-weight: 600;
}

.admin-module__4WpgRW__content {
  padding: 2.5rem 3rem;
  overflow-y: auto;
}

@media (max-width: 640px) {
  .admin-module__4WpgRW__content {
    padding: 1.5rem;
  }
}

.admin-module__4WpgRW__topHeader {
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  display: flex;
}

@media (max-width: 640px) {
  .admin-module__4WpgRW__topHeader {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.admin-module__4WpgRW__headerTitle h1 {
  letter-spacing: -.02em;
  color: #0f172a;
  margin-bottom: .25rem;
  font-size: 1.875rem;
  font-weight: 700;
}

.admin-module__4WpgRW__headerTitle p {
  color: #64748b;
  font-size: .875rem;
}

.admin-module__4WpgRW__statsRow {
  gap: 1rem;
  display: flex;
}

.admin-module__4WpgRW__statCard {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: .5rem;
  flex-direction: column;
  min-width: 140px;
  padding: 1.25rem 1.5rem;
  display: flex;
  box-shadow: 0 1px 2px #0000000d;
}

.admin-module__4WpgRW__statLabel {
  color: #64748b;
  margin-bottom: .25rem;
  font-size: .875rem;
  font-weight: 500;
}

.admin-module__4WpgRW__statValue {
  color: #0f172a;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.admin-module__4WpgRW__tableCard {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: .5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px #0000000d;
}

.admin-module__4WpgRW__tableWrapper {
  width: 100%;
  overflow-x: auto;
}

.admin-module__4WpgRW__table {
  border-collapse: collapse;
  caption-side: bottom;
  text-sm: .875rem;
  width: 100%;
}

.admin-module__4WpgRW__table th {
  text-align: left;
  color: #64748b;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  height: 3rem;
  padding: 0 1rem;
  font-size: .875rem;
  font-weight: 500;
}

.admin-module__4WpgRW__table td {
  color: #0f172a;
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem;
  font-size: .875rem;
}

.admin-module__4WpgRW__table tbody tr {
  transition: background-color .2s;
}

.admin-module__4WpgRW__table tbody tr:hover {
  background-color: #f8fafc;
}

.admin-module__4WpgRW__table tbody tr:last-child td {
  border-bottom: 0;
}

.admin-module__4WpgRW__nameBlock {
  align-items: center;
  gap: .75rem;
  display: flex;
}

.admin-module__4WpgRW__avatar {
  color: #0f172a;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: .75rem;
  font-weight: 600;
  display: flex;
}

.admin-module__4WpgRW__fullName {
  color: #0f172a;
  font-weight: 500;
  line-height: 1.25;
}

.admin-module__4WpgRW__mobile {
  color: #64748b;
  margin-top: .125rem;
  font-size: .75rem;
}

.admin-module__4WpgRW__classCell {
  color: #334155;
}

.admin-module__4WpgRW__badge {
  border: 1px solid #0000;
  border-radius: 9999px;
  align-items: center;
  padding: .125rem .625rem;
  font-size: .75rem;
  font-weight: 500;
  display: inline-flex;
}

.admin-module__4WpgRW__badgePhase1, .admin-module__4WpgRW__badgePhase2 {
  color: #0f172a;
  background: #f1f5f9;
}

.admin-module__4WpgRW__resultCell {
  color: #334155;
}

.admin-module__4WpgRW__viewLink {
  color: #0f172a;
  cursor: pointer;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: .375rem;
  justify-content: center;
  align-items: center;
  height: 2rem;
  padding: 0 .75rem;
  font-size: .875rem;
  font-weight: 500;
  transition: background-color .2s;
  display: inline-flex;
}

.admin-module__4WpgRW__viewLink:hover {
  background: #f1f5f9;
}

.admin-module__4WpgRW__downloadBtn {
  color: #fff;
  background: #0f172a;
  border-radius: .375rem;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  width: 100%;
  margin-top: .5rem;
  padding: .75rem;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .2s;
  display: inline-flex;
}

.admin-module__4WpgRW__downloadBtn:hover {
  background: #1e293b;
}

.admin-module__4WpgRW__overlay {
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  z-index: 1000;
  background: #0f172a66;
  justify-content: flex-end;
  display: flex;
  position: fixed;
  inset: 0;
}

.admin-module__4WpgRW__sheet {
  background: #fff;
  border-left: 1px solid #e2e8f0;
  flex-direction: column;
  width: 100%;
  max-width: 440px;
  height: 100%;
  animation: .3s cubic-bezier(.16, 1, .3, 1) admin-module__4WpgRW__slideIn;
  display: flex;
  box-shadow: -4px 0 24px #0000000d;
}

@keyframes admin-module__4WpgRW__slideIn {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

.admin-module__4WpgRW__sheetHeader {
  border-bottom: 1px solid #e2e8f0;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem;
  display: flex;
}

.admin-module__4WpgRW__sheetTitle h2 {
  color: #0f172a;
  letter-spacing: -.02em;
  margin-bottom: .25rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.admin-module__4WpgRW__sheetTitle p {
  color: #64748b;
  font-size: .875rem;
}

.admin-module__4WpgRW__closeBtn {
  color: #64748b;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: .25rem;
  padding: .25rem;
  font-size: 1.25rem;
}

.admin-module__4WpgRW__closeBtn:hover {
  color: #0f172a;
  background: #f1f5f9;
}

.admin-module__4WpgRW__sheetBody {
  flex-direction: column;
  flex: 1;
  gap: 2rem;
  padding: 1.5rem;
  display: flex;
  overflow-y: auto;
}

.admin-module__4WpgRW__infoGroup label {
  color: #0f172a;
  margin-bottom: 1rem;
  font-size: .875rem;
  font-weight: 600;
  display: block;
}

.admin-module__4WpgRW__infoDetails {
  border: 1px solid #e2e8f0;
  border-radius: .375rem;
  flex-direction: column;
  gap: 0;
  display: flex;
  overflow: hidden;
}

.admin-module__4WpgRW__infoRow {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  justify-content: space-between;
  padding: .75rem 1rem;
  font-size: .875rem;
  display: flex;
}

.admin-module__4WpgRW__infoRow:last-child {
  border-bottom: none;
}

.admin-module__4WpgRW__infoRow:nth-child(2n) {
  background: #f8fafc;
}

.admin-module__4WpgRW__infoRow span {
  color: #64748b;
}

.admin-module__4WpgRW__infoRow strong {
  color: #0f172a;
  text-align: right;
  font-weight: 500;
}

.admin-module__4WpgRW__addressBox {
  color: #334155;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: .375rem;
  padding: 1rem;
  font-size: .875rem;
  line-height: 1.5;
}

.admin-module__4WpgRW__emptyState {
  text-align: center;
  color: #64748b !important;
  padding: 3rem 1rem !important;
}

.admin-module__4WpgRW__photoWrapper {
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.admin-module__4WpgRW__photoImage {
  object-fit: cover;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  width: 64px;
  height: 64px;
}

.admin-module__4WpgRW__photoPlaceholder {
  color: #64748b;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  font-size: 1.25rem;
  display: flex;
}

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