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

.sidebar {
  width: 250px;
  min-height: 100vh;
  background: rgba(255, 255, 255, 0.03);
  border-right: 2px solid rgba(3, 188, 137, 0.3);
  display: flex;
  flex-direction: column;
  padding: 20px;
  position: fixed;
  left: 0;
  top: 0;
}

.sidebar-title {
  color: #03bc89;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  flex: 1;
}

.sidebar-menu li {
  margin-bottom: 5px;
}

.sidebar-menu a {
  display: block;
  padding: 12px 15px;
  color: #B0B0B0;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.sidebar-menu a:hover {
  background: rgba(3, 188, 137, 0.1);
  color: #03bc89;
}

.logout-btn {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 2px solid rgba(255, 68, 68, 0.3);
  color: #ff4444;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.logout-btn:hover {
  background: rgba(255, 68, 68, 0.1);
  border-color: #ff4444;
}

.main-content {
  flex: 1;
  margin-left: 250px;
  padding: 30px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(3, 188, 137, 0.3);
  border-radius: 10px;
  margin-bottom: 25px;
}

.header-left h3 {
  color: #FFFFFF;
  font-size: 1.1rem;
}

.header-right {
  color: #B0B0B0;
  font-size: 0.9rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-header h2 {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 600;
}

.admin-user {
  color: #03bc89;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Data Table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid rgba(3, 188, 137, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.data-table th {
  background: rgba(3, 188, 137, 0.1);
  color: #03bc89;
  padding: 12px 15px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.data-table td {
  padding: 12px 15px;
  color: #E0E0E0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

.data-table tr:hover td {
  background: rgba(3, 188, 137, 0.05);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

/* Status */
.status {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
}

.status.success {
  background: rgba(3, 188, 137, 0.15);
  color: #03bc89;
}

.status.warning {
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
}

.status.danger {
  background: rgba(255, 68, 68, 0.15);
  color: #ff4444;
}

.status.secondary {
  background: rgba(176, 176, 176, 0.15);
  color: #B0B0B0;
}

/* Buttons */
.btn-sm {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(3, 188, 137, 0.3);
  border-radius: 6px;
  color: #E0E0E0;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  margin-right: 4px;
}

.btn-sm:hover {
  background: rgba(3, 188, 137, 0.1);
  border-color: #03bc89;
}

.btn-primary {
  padding: 10px 20px;
  background: linear-gradient(135deg, #03bc89 0%, #04d99e 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(3, 188, 137, 0.4);
}

/* Table section */
.table-section {
  margin-bottom: 30px;
}

.table-section .section-header {
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .sidebar {
    width: 200px;
  }

  .main-content {
    margin-left: 200px;
    padding: 20px;
  }

  .data-table {
    font-size: 0.8rem;
  }

  .data-table th,
  .data-table td {
    padding: 8px 10px;
  }
}