<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* === Theme === */
:root {
  /* Colors */
  --primary: oklch(0.63 0.18 259.96);
  --primary-foreground: oklch(1 0 0);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.32 0 0);
  --accent: oklch(0.63 0.18 259.96);
  --background: oklch(0.98 0.0017 247.84);
  --text: oklch(0.32 0 0);
  --border: oklch(0.9 0.0017 247.84);
  --muted: oklch(0.98 0.0017 247.84);
  --muted-foreground: oklch(0.42 0 0);
  --danger: oklch(0.63 0.18 259.96);
  --danger-foreground: oklch(1 0 0);
  /* Radii */
  --radius: 8px;
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
}

/* === Global Styles === */
body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  background: var(--background);
  color: var(--text);
}

.main-content {
  flex-grow: 1;
  padding: 1rem;
  margin-left: 0;
  transition: margin-left 0.3s ease;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .main-content {
    margin-left: 250px;
  }
}

/* === Container === */
.container-wrapper {
  margin: auto;
  padding-top: 80px;
  padding-bottom: 80px;
  min-height: 500px;
}

/* === Card === */
.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 20px;
}

/* === Card Header === */
.card-header {
  background: var(--card);
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Form Groups === */
.form-group {
  margin-bottom: 20px;
}

/* === Form Control === */
.form-control {
  width: 100%;
  padding: 0.75rem;
  font-size: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}

/* === Buttons === */
.btn {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem;
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
}
.btn:hover {
  background-color: oklch(from var(--primary) calc(l * 1.1) c h);
}
</pre></body></html>