/* Admin-specific styles
 * Tailwind CSS is loaded separately via tailwind.css
 * Add any admin-specific overrides here
 */

/* Dialog modal centering */
dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  max-height: 90vh;
  overflow-y: auto;
}

/* Dialog backdrop styling */
dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}
