.notification-form-container {
  padding: 1rem;
}

.notification-form {
  max-width: 100%;
}

.notification-form .form-group {
  margin-bottom: 1.5rem;
}

.notification-form .form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.notification-form .form-control,
.notification-form .form-select {
  border-radius: 0.375rem;
  border: 1px solid #dee2e6;
  padding: 0.5rem 0.75rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.notification-form .form-control:focus,
.notification-form .form-select:focus {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.notification-form .alert {
  border-radius: 0.375rem;
  margin-bottom: 1.5rem;
}

.notification-form .alert-icon {
  margin-right: 0.5rem;
}

.notification-form .form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.notification-form .btn {
  padding: 0.5rem 1rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: all 0.15s ease-in-out;
}

.notification-form .btn-primary {
  background-color: #4f46e5;
  border-color: #4f46e5;
  color: white;
}

.notification-form .btn-primary:hover {
  background-color: #0b5ed7;
  border-color: #0a58ca;
}

.notification-form .btn-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
  color: white;
}

.notification-form .btn-secondary:hover {
  background-color: #5c636a;
  border-color: #565e64;
}

/* Index Page Styles */
.notifications-header {
  background-color: #fff;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1.5rem;
}

.notifications-header h1 {
  font-size: 1.875rem;
  font-weight: 600;
  color: #111827;
}

.notifications-filters {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.notifications-table {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.notifications-table th {
  background-color: #f9fafb;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #4b5563;
  padding: 0.75rem 1rem;
}

.notifications-table td {
  padding: 1rem;
  vertical-align: middle;
}

.notifications-table tr:hover {
  background-color: #f9fafb;
}

.notification-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.notification-status-badge.active {
  background-color: #dcfce7;
  color: #166534;
}

.notification-status-badge.inactive {
  background-color: #f3f4f6;
  color: #4b5563;
}

.notification-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.notification-actions .btn {
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
} 