/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *
 *= require_tree .
 *= require_self
 */

:root {
  color-scheme: light;
}

body {
  margin: 0;
}

.admin-shell {
  min-height: 100vh;
}

.hero-glow {
  background:
    radial-gradient(circle at 85% 10%, rgba(0, 181, 173, 0.12), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.96));
}

.panel-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .panel-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 1fr);
  }
}
