.admin-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.admin-card {
  background: #ffffff;
  border-radius: 6px;
  padding: 24px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
}

.admin-title {
  margin-bottom: 20px;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.admin-action-card {
  display: block;
  background: #ffffff;
  padding: 22px;
  border-radius: 6px;
  color: #333333;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  transition: 0.2s ease;
}

.admin-action-card:hover {
  transform: translateY(-3px);
  color: #B50C19;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid #eeeeee;
  padding: 12px;
  vertical-align: top;
}

.admin-table th {
  font-weight: 600;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.admin-form-grid .full {
  grid-column: 1 / -1;
}

.admin-message {
  margin-top: 15px;
  font-weight: 600;
}

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.admin-small {
  font-size: 13px;
  color: #777777;
}

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

  .admin-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
}