/* /*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Elegant, down-to-earth, slightly feminine styling */
:root {
  --bg: #faf7f5;
  --surface: #ffffff;
  --ink: #3b3a3a;
  --muted: #7a6f6b;
  --accent: #d88aa6;
  /* soft rose */
  --accent-2: #b8d8c3;
  /* sage */
  --border: #eadfd9;
  --radius: 10px;
  --shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  line-height: 1.6;
}

body.manage-layout {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
}


.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.title {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.subtitle {
  margin: 0 0 24px;
  color: var(--muted);
}

.form {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

label {
  font-weight: 500;
}

input::placeholder,
select:invalid {
  color: #9c8f89;
}

.actions {
  margin-top: 8px;
}

.button {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #2f2a2a;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.flash {
  margin-bottom: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #fff7fb;
  border: 1px solid #f2d7e6;
  color: #7a3a56;
}

.rounded-checkbox,
.rounded-radio {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 9999px;
  border: 2px solid #cbd5f5;
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.rounded-checkbox::after,
.rounded-radio::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background-color: #2563eb;
  transform: scale(0);
  transition: transform 0.2s ease;
}

.rounded-checkbox:checked,
.rounded-radio:checked {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
}

.rounded-checkbox:checked::after,
.rounded-radio:checked::after {
  transform: scale(1);
}

.rounded-checkbox {
  border-radius: 8px;
}

.rounded-checkbox::after {
  border-radius: 2px;
  width: 10px;
  height: 10px;
}

*/