
/* Notification Access Admin - Modern UI Styles */

/* Container and Layout */
.notification-admin-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

.notification-admin-inner {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Header Section */
.notification-admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #f0f2f5;
}

.notification-admin-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.notification-admin-header h1 i {
  color: #667eea;
  font-size: 1.75rem;
}

.notification-back-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #f7fafc;
  color: #4a5568;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.notification-back-btn:hover {
  background: #edf2f7;
  border-color: #cbd5e0;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Error and Success Messages */
.notification-message {
  padding: 1rem 1.25rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.notification-message.error {
  background: #fff5f5;
  color: #c53030;
  border-left: 4px solid #fc8181;
}

.notification-message.success {
  background: #f0fff4;
  color: #276749;
  border-left: 4px solid #68d391;
}

.notification-message i {
  font-size: 1.25rem;
}

/* Statistics Section */
.notification-stats-section {
  background: #f7fafc;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid #e2e8f0;
}

.notification-stats-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2d3748;
  margin: 0 0 1.5rem 0;
}

.notification-stats-title i {
  color: #667eea;
}

.notification-stats-loading {
  text-align: center;
  padding: 2rem;
  color: #718096;
  font-size: 0.875rem;
}

.notification-stats-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.notification-stat-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.notification-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.notification-stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.notification-stat-card.active .notification-stat-icon {
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
  color: white;
}

.notification-stat-card.inactive .notification-stat-icon {
  background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
  color: white;
}

.notification-stat-card.total .notification-stat-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.notification-stat-content {
  flex: 1;
}

.notification-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #1a202c;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.notification-stat-label {
  font-size: 0.875rem;
  color: #718096;
  font-weight: 600;
}

/* Form Type Stats */
.notification-form-type-stats {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.notification-form-type-stats h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #2d3748;
  margin: 0 0 1rem 0;
}

.notification-form-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.notification-form-type-item {
  padding: 1rem;
  background: #f7fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.notification-form-type-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.notification-form-type-counts {
  display: flex;
  gap: 1rem;
  font-size: 0.8125rem;
}

.notification-form-type-counts .count-active {
  color: #38a169;
  font-weight: 600;
}

.notification-form-type-counts .count-inactive {
  color: #e53e3e;
  font-weight: 600;
}

/* Controls Section - Card Layout */
.notification-controls-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.notification-controls-top {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.notification-search-wrapper {
  flex: 1;
  min-width: 280px;
  position: relative;
}

.notification-search-wrapper i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #a0aec0;
  font-size: 0.875rem;
}

.notification-search-input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 2.75rem;
  border: none;
  border-radius: 10px;
  font-size: 0.875rem;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.notification-search-input:focus {
  outline: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.notification-search-input::placeholder {
  color: #a0aec0;
}

.notification-filters-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.notification-filters-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.notification-filter-wrapper {
  position: relative;
  min-width: 150px;
}

.notification-filter-wrapper i {
  position: absolute;
  left: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  color: #a0aec0;
  font-size: 0.75rem;
  pointer-events: none;
}

.notification-filter-select {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 2.5rem;
  border: none;
  border-radius: 10px;
  font-size: 0.875rem;
  background: white;
  color: #2d3748;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a5568' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}

.notification-filter-select:focus {
  outline: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.notification-add-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: white;
  color: #667eea;
  border: none;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.notification-add-btn:hover {
  background: #f7fafc;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.notification-add-btn i {
  font-size: 1rem;
}

/* Table Section - Card Layout */
.notification-table-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
}

.notification-table-wrapper {
  overflow-x: auto;
  max-width: 100%;
}

.notification-table {
  width: 100%;
  border-collapse: collapse;
}

.notification-table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.notification-table thead th {
  padding: 1.25rem 1rem;
  text-align: left;
  font-size: 0.8125rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.notification-table tbody tr {
  border-bottom: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.notification-table tbody tr:hover {
  background: linear-gradient(90deg, #f7fafc 0%, #edf2f7 100%);
  transform: scale(1.002);
}

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

.notification-table tbody td {
  padding: 1.25rem 1rem;
  font-size: 0.875rem;
  color: #2d3748;
  vertical-align: middle;
}

.notification-email-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #2d3748;
}

.notification-email-display i {
  color: #667eea;
}

.notification-table-notes {
  max-width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #718096;
  font-size: 0.8125rem;
}

.notification-table-date {
  font-size: 0.8125rem;
  color: #718096;
}

/* Status Badges */
.notification-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  gap: 0.375rem;
}

.notification-badge.form-type {
  background: linear-gradient(135deg, #805ad5 0%, #6b46c1 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(128, 90, 213, 0.3);
}

.notification-badge.scope {
  background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(66, 153, 225, 0.3);
}

.notification-badge.field-type {
  background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(237, 137, 54, 0.3);
}

.notification-badge.status-allow {
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(72, 187, 120, 0.3);
}

.notification-badge.status-deny {
  background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(245, 101, 101, 0.3);
}

/* Action Buttons */
.notification-actions {
  display: flex;
  gap: 0.5rem;
}

.notification-action-btn {
  padding: 0.5rem 0.75rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-action-btn.toggle.activate {
  background: #f0fff4;
  color: #38a169;
}

.notification-action-btn.toggle.activate:hover {
  background: #38a169;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(56, 161, 105, 0.3);
}

.notification-action-btn.toggle.deactivate {
  background: #fff5f5;
  color: #e53e3e;
}

.notification-action-btn.toggle.deactivate:hover {
  background: #e53e3e;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
}

.notification-action-btn.edit {
  background: #edf2f7;
  color: #667eea;
}

.notification-action-btn.edit:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.notification-action-btn.delete {
  background: #fff5f5;
  color: #f56565;
}

.notification-action-btn.delete:hover {
  background: #f56565;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 101, 101, 0.3);
}

/* Empty State */
.notification-empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: #718096;
}

.notification-empty-state i {
  font-size: 4rem;
  color: #cbd5e0;
  margin-bottom: 1.5rem;
}

.notification-empty-state h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d3748;
  margin: 0 0 0.5rem 0;
}

.notification-empty-state p {
  font-size: 0.875rem;
  margin: 0;
}

/* Loading State */
.notification-loading {
  text-align: center;
  padding: 4rem 2rem;
}

.notification-loading-spinner {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  border: 4px solid #e2e8f0;
  border-top-color: #667eea;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.notification-loading-text {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #718096;
  font-weight: 500;
}

/* Pagination */
.notification-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.notification-pagination-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.notification-pagination-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.notification-pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.notification-pagination-info {
  font-size: 0.875rem;
  color: #4a5568;
  font-weight: 600;
  padding: 0 1rem;
}

.notification-pagination-info .highlight {
  color: #667eea;
  font-weight: 700;
}

/* Modal Overlay */
.notification-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 1rem;
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Modal */
.notification-modal {
  background: white;
  border-radius: 16px;
  max-width: 650px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.notification-modal.small {
  max-width: 450px;
}

/* Modal Header */
.notification-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 2rem;
  border-bottom: 2px solid #f0f2f5;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px 16px 0 0;
}

.notification-modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.notification-modal-header h2 i {
  font-size: 1.25rem;
}

.notification-modal-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.notification-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

/* Modal Content */
.notification-modal-content {
  padding: 2rem;
}

.notification-modal-form {
  padding: 2rem;
}

/* Form Group */
.notification-form-group {
  margin-bottom: 1.5rem;
}

.notification-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #2d3748;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.notification-form-group input[type="text"],
.notification-form-group input[type="email"],
.notification-form-group select,
.notification-form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.875rem;
  color: #2d3748;
  transition: all 0.3s ease;
  background: white;
}

.notification-form-group input:focus,
.notification-form-group select:focus,
.notification-form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.notification-form-group input.error,
.notification-form-group select.error {
  border-color: #f56565;
}

.notification-form-error {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  color: #f56565;
  font-size: 0.75rem;
  font-weight: 600;
}

.notification-form-error i {
  font-size: 0.875rem;
}

/* Radio Options */
.notification-scope-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.notification-radio-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #f7fafc;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.notification-radio-label:hover {
  background: #edf2f7;
  border-color: #cbd5e0;
}

.notification-radio-label input[type="radio"] {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  cursor: pointer;
  accent-color: #667eea;
  flex-shrink: 0;
}

.notification-radio-label input[type="radio"]:checked ~ .radio-content {
  color: #667eea;
}

.notification-radio-label .radio-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.notification-radio-label .radio-content strong {
  font-size: 0.875rem;
  color: #2d3748;
}

.notification-radio-label .radio-content small {
  font-size: 0.75rem;
  color: #718096;
}

/* Checkbox */
.notification-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 1rem;
  background: #f7fafc;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.notification-checkbox-label:hover {
  background: #edf2f7;
}

.notification-checkbox-label input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  accent-color: #667eea;
}

.notification-checkbox-label span {
  font-size: 0.875rem;
  color: #2d3748;
  font-weight: 500;
}

/* Modal Actions */
.notification-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1.75rem 2rem;
  border-top: 2px solid #f0f2f5;
  background: #f7fafc;
  border-radius: 0 0 16px 16px;
}

.notification-btn {
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.notification-btn-secondary {
  background: white;
  color: #4a5568;
  border: 2px solid #e2e8f0;
}

.notification-btn-secondary:hover:not(:disabled) {
  background: #f7fafc;
  border-color: #cbd5e0;
  transform: translateY(-1px);
}

.notification-btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.notification-btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.notification-btn-danger {
  background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(245, 101, 101, 0.3);
}

.notification-btn-danger:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 101, 101, 0.4);
}

.notification-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* Delete Details */
.notification-delete-details {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: #fff5f5;
  border-left: 4px solid #f56565;
  border-radius: 8px;
}

.notification-delete-details p {
  margin: 0.5rem 0;
  font-size: 0.875rem;
  color: #2d3748;
}

.notification-delete-details strong {
  color: #1a202c;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .notification-admin-container {
    padding: 1.5rem;
  }
  
  .notification-admin-inner {
    padding: 1.5rem;
  }
  
  .notification-stats-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .notification-admin-container {
    padding: 1rem;
  }
  
  .notification-admin-inner {
    padding: 1rem;
  }
  
  .notification-admin-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .notification-admin-header h1 {
    font-size: 1.5rem;
  }
  
  .notification-back-btn {
    width: 100%;
    justify-content: center;
  }
  
  .notification-controls-top {
    flex-direction: column;
  }
  
  .notification-search-wrapper {
    min-width: 100%;
  }
  
  .notification-filters-row {
    flex-direction: column;
    align-items: stretch;
  }
  
  .notification-filters-group {
    flex-direction: column;
  }
  
  .notification-filter-wrapper {
    width: 100%;
  }
  
  .notification-add-btn {
    width: 100%;
    justify-content: center;
  }
  
  .notification-table-wrapper {
    overflow-x: auto;
  }
  
  .notification-table {
    min-width: 900px;
  }
  
  .notification-pagination {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .notification-pagination-info {
    order: -1;
  }
  
  .notification-modal {
    max-width: 100%;
    margin: 0.5rem;
  }
  
  .notification-modal-header {
    padding: 1.25rem 1.5rem;
  }
  
  .notification-modal-header h2 {
    font-size: 1.25rem;
  }
  
  .notification-modal-form,
  .notification-modal-content {
    padding: 1.5rem;
  }
  
  .notification-modal-actions {
    padding: 1.25rem 1.5rem;
    flex-direction: column-reverse;
  }
  
  .notification-btn {
    width: 100%;
    justify-content: center;
  }

  .notification-activity-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .notification-activity-time {
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .notification-admin-header h1 {
    font-size: 1.25rem;
  }
  
  .notification-table thead th,
  .notification-table tbody td {
    padding: 0.875rem 0.5rem;
    font-size: 0.8125rem;
  }
  
  .notification-stat-card {
    flex-direction: column;
    text-align: center;
  }
  
  .notification-form-type-grid {
    grid-template-columns: 1fr;
  }
}
