:root {
  /* === Color Palette === */
  --color-primary: #006b3f;
  --color-secondary: #006b3f;
  --color-accent: #b9d9b8;
  --color-border: #aaa888;
  --color-text: #006b3f;
  --color-text-muted: #4c725d;
  --color-hyperlink: #1e90ff;

  --color-bg: #fffeed;
  --color-bg-secondary: #f7f6e6;
  --color-surface: #ffffff;
  --color-hover: #e9f3e8;

  --color-warning: #e6a23c;
  --color-success: #43a047;
  --color-error: #d32f2f;

  /* === Typography === */
  --font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  --font-h1: 2.5rem;
  --font-h2: 2rem;
  --font-h3: 1.5rem;
  --font-h4: 1.25rem;
  --font-body: 1rem;
  --font-small: 0.875rem;

  /* === Spacing === */
  --padding-xs: 0.25rem;
  --padding-sm: 0.5rem;
  --padding-md: 1rem;
  --padding-lg: 1.5rem;
  --padding-xl: 2rem;

  --gap-sm: 0.5rem;
  --gap-md: 1rem;
  --header-height: 64px;
  --aside-width: 250px;

  /* === Misc === */
  --radius: 6px;
  --transition: 0.2s ease;
}

/* === Base Styles === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-family);
  font-size: var(--font-body);
  line-height: 1.5;
  background-image: radial-gradient(rgba(0, 0, 0, 0.03) 0.5px, transparent 1.5px);
  background-size: 8px 8px;
}

a {
  color: var(--color-hyperlink);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* === Header === */
header.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 var(--padding-sm);
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
  color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
}

header.app-header .logo-under {
  width: var(--aside-width);
  height: 100%;
}

aside .logo {
  color: var(--color-bg-secondary);
  font-family: "BBH Hegarty", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

aside .logo span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 25px;
}

aside .logo svg {
  fill: var(--color-bg-secondary);
  width: 43px;
  transform: rotate(19deg);
}

.wave span {
  display: inline-block;
  line-height: 1;
  padding: 0 .02rem;
  /* small spacing between chars */
  transform: translateY(0);
  /* default */
}

/* static wave offsets (you can tweak pixel values) */
/* pattern repeats every 8 characters. Adjust values to taste. */
.wave span:nth-child(2n) {
  transform: translateY(-0.5px);
}

header.app-header h2 {
  color: #fff;
  font-weight: 600;
}

/* === Search Section in Header === */
header.app-header .search {
  flex: 1;
  display: flex;
  justify-content: center;
}

header.app-header .search form {
  width: 100%;
  max-width: 400px;
}

header.app-header .search input {
  width: 100%;
  padding: var(--padding-sm) var(--padding-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: var(--font-body);
  transition: border-color var(--transition), box-shadow var(--transition);
}

header.app-header .search input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
}

/* === Auth/User Section === */
header.app-header div:last-child {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
}

header.app-header span {
  background-color: rgba(255, 255, 255, 0.15);
  padding: var(--padding-sm) var(--padding-md);
  border-radius: var(--radius);
}

/* === Buttons === */
button {
  background: linear-gradient(to bottom, var(--color-bg), #f3f3f3);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--padding-sm) var(--padding-md);
  cursor: pointer;
  transition: background-color var(--transition), box-shadow var(--transition);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

button:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-primary);
}

/* === Primary / Important Action Button === */
/* Use for e.g. Save, Confirm, Create, Submit */
button.primary {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  font-weight: 600;
}

button.primary:hover {
  background: var(--color-success);
  /* subtle feedback */
  border-color: var(--color-success);
  color: white;
}


/* === Selected / Current Page Button === */
/* Button that is already active (e.g. you're on Home) */
button.selected,
button:disabled.selected {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-primary);
  cursor: default;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
  font-weight: 600;
}

/* Prevent normal disabled styling from muting it */
button.selected:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

button.button-link {
  /* Reset button look */
  background: none;
  border: none;
  padding: 0;
  margin: 0;

  /* Match anchor styling */
  color: var(--color-hyperlink);
  font: inherit;
  line-height: inherit;
  text-align: left;

  cursor: pointer;

  /* Anchor-like underline behavior */
  text-decoration: none;
}

/* Hover = underline */
button.button-link:hover {
  text-decoration: underline;
}

/* Focus styles (keyboard accessibility) */
button.button-link:focus-visible {
  outline: 2px solid var(--color-hyperlink);
  outline-offset: 2px;
}

/* Active click feedback */
button.button-link:active {
  opacity: 0.85;
}

/* Disabled state */
button.button-link:disabled {
  color: var(--color-text-muted);
  cursor: not-allowed;
  text-decoration: none;
}


#root-layout {
  display: flex;
  flex-direction: row;
}














/* ---------------------------
   VISIBLE HAMBURGER BUTTON
   --------------------------- */
.toggle-btn {
  position: fixed;
  top: 0;
  left: 0;
  height: var(--header-height);
  min-width: 44px;
  background-color: var(--color-primary);
  width: var(--aside-width);

  display: flex;
  align-items: center;

  font-size: 20px;
  line-height: 1;
  color: #fff;

  cursor: pointer;
  user-select: none;

  z-index: 999;
  /* always on top */
}

.toggle-button-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding-left: var(--padding-sm);
  padding-right: var(--padding-sm);
  gap: var(--padding-sm)
}

.toggle-button-content button {
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  pointer-events: none;
  padding: 0;
}

.toggle-button-content button svg {
  height: 100%;
}

.toggle-btn:focus {
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: 2px;
}

/* ---------------------------
   HIDDEN CHECKBOX
   --------------------------- */
#toggler {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------------------------
   SIDEBAR (DEFAULT: CLOSED)
   --------------------------- */
#sidebar {
  top: 0;
  left: 0;
  width: 0;
  overflow: hidden;
  transition: width 0.25s ease;
  z-index: 950;
}

#sidebar .sidebar-content {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: var(--aside-width);
  height: calc(100% - var(--header-height));
  background-color: var(--color-bg-secondary);
  border-right: 1px solid var(--color-border);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 12px 8px;
  box-sizing: border-box;
  overflow-y: auto;
  z-index: 901;

  transform: translateX(-100%);
  /* hidden by default */
  transition: transform 0.25s ease;
  pointer-events: auto;
}

/* ---------------------------
   MOBILE: TOGGLED OPEN (<1200px)
   --------------------------- */
@media (max-width: 1199px) {
  #sidebar:has(#toggler:checked) {
    width: var(--aside-width);
  }

  #sidebar:has(#toggler:checked) .sidebar-content {
    transform: translateX(0);
  }

  #sidebar:has(#toggler:checked) #aside-bg {
    opacity: 1;
    pointer-events: auto;
  }
}

/* ---------------------------
   DESKTOP: REVERSE TOGGLE (>=1200px)
   --------------------------- */
@media (min-width: 1200px) {

  /* visible by default */
  #sidebar {
    width: var(--aside-width);
  }

  #sidebar .sidebar-content {
    transform: translateX(0);
  }

  /* checkbox checked = hide sidebar */
  #sidebar:has(#toggler:checked) {
    width: 0;
  }

  #sidebar:has(#toggler:checked) .sidebar-content {
    transform: translateX(-100%);
  }

  /* overlay never visible on desktop */
  #aside-bg {
    display: none;
  }
}

/* ---------------------------
   NAVIGATION STYLES
   --------------------------- */
.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: var(--padding-sm);
  list-style: none;
  margin: 0;
}

.sidebar-nav button {
  width: 100%;
}

.sidebar-footer {
  padding: 12px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
}

/* ---------------------------
   OVERLAY
   --------------------------- */
#aside-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease 0.2s;
  /* fade delay */
  z-index: 900;
  margin-top: var(--header-height);
}


















/* === Main Layout === */
#layout {
  margin-top: var(--header-height);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  flex: 1;
}

/* === Content Area === */
section.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--padding-lg);
}




/* ============================================
   Django Message Styles
   ============================================ */

.messages {
  width: 100%;
  margin-bottom: var(--padding-md);
  padding: 0;
}

.messages li {
  list-style: none;
  padding: var(--padding-sm) var(--padding-md);
  margin-bottom: var(--padding-sm);

  font-size: var(--font-body);
  font-weight: 500;

  border: 1px solid transparent;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* SUCCESS */
.messages li.success,
.messages li.message-success {
  background-color: rgba(67, 160, 71, 0.15);
  border-color: var(--color-success);
  color: var(--color-success);
}

/* WARNING */
.messages li.warning,
.messages li.message-warning {
  background-color: rgba(230, 162, 60, 0.15);
  border-color: var(--color-warning);
  color: var(--color-warning);
}

/* ERROR */
.messages li.error,
.messages li.message-error {
  background-color: rgba(211, 47, 47, 0.15);
  border-color: var(--color-error);
  color: var(--color-error);
}

/* INFO */
.messages li.info,
.messages li.message-info {
  background-color: rgba(30, 144, 255, 0.15);
  border-color: var(--color-hyperlink);
  color: var(--color-hyperlink);
}













section.content main {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  min-width: 940px;
}

/* === Breadcrumbs === */
.breadcrumbs {
  border: solid 1px var(--color-border);
  width: 100%;
  background-color: var(--color-bg-secondary);
  padding: var(--padding-sm);
  margin-bottom: var(--padding-md);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* === Article === */
article {
  border: solid 1px var(--color-border);
  background-color: var(--color-bg-secondary);
  padding: var(--padding-xl);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: background-color var(--transition), box-shadow var(--transition);
  width: 100%;
  min-height: calc(100vh - var(--header-height) - var(--padding-lg) * 2);
}

article .toolbar {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
  margin-bottom: var(--gap-sm)
}

article .toolbar button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-sm);
}

article .toolbar button svg {
  height: 15px;
  width: 15px;
}

article .toolbar .buttons {
  display: flex;
  flex-direction: row;
  gap: var(--gap-sm);
}



section.form form p {
  margin-bottom: var(--padding-sm);
  display: flex;
  flex-direction: column;
}

section.form form p.number-field {
  display: flex;
  flex-direction: row;
  gap: var(--padding-sm);
  align-items: center;
}

section.form form p.number-field label {
  min-width: 50px;
}

section.form form p.datetime-field {
  display: flex;
  flex-direction: row;
  gap: var(--padding-sm);
  align-items: center;
}

section.form form p.datetime-field label {
  min-width: 50px;
}

section.form form p.datetime-field input[type="checkbox"]:not(:checked)
  ~ input[type="time"] {
  opacity: 0.4;
  pointer-events: none;
}


section.form form label {
  font-weight: 600;
  color: var(--color-text-primary);
}

.duration-timestamps, .manual-durations, .duration-methods {
  display: flex;
  flex-direction: row;
  gap: var(--padding-md);
  align-items: center;
}

.duration-fields {
  display: flex;
  flex-direction: column;
  gap: var(--padding-sm);
}

.duration-fields:has(input[value="manual"]:checked) .duration-timestamps {
    display: none;
}

.duration-fields:has(input[value="range"]:checked) .manual-durations input[type="number"] {
    opacity: 0.4;
    pointer-events: none;
}

section.form form input,
section.form form textarea,
section.form form select {
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  border: 1px solid var(--color-border, #ccc);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

section.form form input:focus,
section.form form textarea:focus,
section.form form select:focus {
  border-color: var(--color-primary, #007bff);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

section.form form .helptext {
  font-size: 0.875rem;
  color: gray;
  margin-top: 0.25rem;
}

section.form form input[required] {
  border-left: 4px solid var(--color-primary, #007bff);
}







/* === Footer === */
footer {
  text-align: center;
  padding: var(--padding-md);
  color: var(--color-text-muted);
  background-color: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
}

/* === Data Table === */
.data-table-scroll {
  width: 100%;
  overflow-x: auto;
  max-height: 70vh;
  overflow-y: auto;
   position: relative;
   z-index: 0;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-small);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  min-width: max-content;
}

.data-table thead {
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
}

.data-table tfoot tr {
  height: 75px;
}

.data-table thead th {
  color: #fff;
  padding: var(--padding-sm) var(--padding-md);
  background-color: var(--color-primary);
  font-weight: 600;
  text-align: left;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.data-table tbody tr:nth-child(even) {
  background-color: var(--color-bg-secondary);
}

.data-table tbody tr:hover {
  background-color: var(--color-accent);
}

.data-table td {
  padding: var(--padding-sm) var(--padding-md);
  border-bottom: 1px solid var(--color-border);
}

.data-table th,
.data-table td {
  width: 160px;
  max-width: 160px;
}

.data-table .actions-cell-filter {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.data-table .actions-cell-filter svg {
  fill: var(--color-accent);
  width: 20px;
  height: 20px;
}

.data-table .actions-cell {
  position: relative;
  text-align: center;
  max-width: 80px;
  width: 80px;
}

.data-table .actions-dropdown {
  position: relative;
  display: inline-block;
}

.data-table .dropdown-button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
}

.data-table .actions-menu {
  position: absolute;
  text-align: left;
  top: 100%;
  right: 0;

  display: none !important;

  background: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  min-width: 120px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.data-table .actions-dropdown:hover .actions-menu,
.data-table .actions-dropdown:focus-within .actions-menu {
  display: block !important;
  overflow: hidden;
}

.data-table .actions-menu a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
  outline: none;
}

.data-table .actions-menu a:hover,
.data-table .actions-menu a:focus {
  background: #f5f5f5;
}

.data-table .actions-menu button {
  all: unset;
  display: block;
  width: 100%;

  padding: 8px 12px;
  color: #333;
  cursor: pointer;
  text-align: left;
  overflow: hidden;
}

.data-table .actions-menu button:hover,
.data-table .actions-menu button:focus-visible {
  background: #f5f5f5;
}

.data-table .actions-menu button:disabled {
  color: #999;
  cursor: not-allowed;
  background: none;
}


.data-table th .sortable {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--padding-sm);
}

.data-table .sortable a {
      color: var(--color-bg)
}

.data-table .sort-controls {
  display: flex;
  flex-direction: row;
  gap: var(--padding-xs);
}

.data-table .sort-controls .arrows {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.data-table .sort-btn {
    text-decoration: none;
    font-size: 11px;
    line-height: 1;
    cursor: pointer;
}
.data-table .sort-btn.active {
    color: #000;
    font-weight: bold;
}

.data-table .sort-btn.up.active {
    color: var(--color-bg);
}

.data-table .sort-btn.down.active {
    color: var(--color-bg);
}

.data-table .clear-btn {
  line-height: 1;
    font-size: 20px;
}

.data-table .sort-btn:not(.active) {
  opacity: 0.7
}

/* ================================
   Sticky edge columns (opt-in)
   ================================ */

.data-table--sticky-edges {
  border-collapse: separate; /* REQUIRED for sticky columns */
  border-spacing: 0;
}

/* ---- First column ---- */
.data-table--sticky-edges th:first-child,
.data-table--sticky-edges td:first-child {
  position: sticky;
  left: 0;
  z-index: 20;
}

/* Header first column */
.data-table--sticky-edges thead th:first-child {
  z-index: 19999;
  background: linear-gradient(
    to bottom,
    var(--color-primary),
    var(--color-secondary)
  );
}

/* ---- Last column (actions) ---- */
.data-table--sticky-edges th:last-child,
.data-table--sticky-edges td:last-child {
  position: sticky;
  right: 0;
  z-index: 20;
}

.data-table tbody tr:hover {
  position: relative;
  z-index: 50;
}

/* Header last column */
.data-table--sticky-edges thead th:last-child {
  z-index: 19999;
  background: linear-gradient(
    to bottom,
    var(--color-primary),
    var(--color-secondary)
  );
}

/* ---- Visual separation shadows ---- */
.data-table--sticky-edges td:first-child,
.data-table--sticky-edges th:first-child {
  box-shadow: 2px 0 0 rgba(0, 0, 0, 0.05);
}

.data-table--sticky-edges td:last-child,
.data-table--sticky-edges th:last-child {
  box-shadow: -2px 0 0 rgba(0, 0, 0, 0.05);
}

/* ---- Hover state fix ---- */
.data-table--sticky-edges tbody tr:hover td:first-child,
.data-table--sticky-edges tbody tr:hover td:last-child {
  background-color: var(--color-accent);
}

/* Odd rows (default surface) */
.data-table--sticky-edges tbody tr:nth-child(odd) td:first-child,
.data-table--sticky-edges tbody tr:nth-child(odd) td:last-child {
  background-color: var(--color-surface);
}

/* Even rows (striped) */
.data-table--sticky-edges tbody tr:nth-child(even) td:first-child,
.data-table--sticky-edges tbody tr:nth-child(even) td:last-child {
  background-color: var(--color-bg-secondary);
}

/* Hover state */
.data-table--sticky-edges tbody tr:hover td:first-child,
.data-table--sticky-edges tbody tr:hover td:last-child {
  background-color: var(--color-accent);
}

.data-table--sticky-edges td:last-child,
.data-table--sticky-edges th:last-child {
  overflow: visible;
}

thead th.textrecord {
    max-width: 500px;  
    width: 500px;   
}

td.textrecord {
    white-space: nowrap;    
    overflow: hidden;      
    text-overflow: ellipsis; 
    max-width: 500px;  
    width: 500px;     
}




input[type="radio"][value="range"]:checked ~ .duration-hours-field,
input[type="radio"][value="range"]:checked ~ .duration-minutes-field,
input[type="radio"][value="range"]:checked ~ .duration-seconds-field {
    pointer-events: none;
    background-color: #eee;
    cursor: not-allowed;
}

input[type="radio"][value="manual"]:checked ~ .duration-start-date-field,
input[type="radio"][value="manual"]:checked ~ .duration-start-time-field,
input[type="radio"][value="manual"]:checked ~ .duration-start-seconds-field,
input[type="radio"][value="manual"]:checked ~ .duration-start-has-time-field,
input[type="radio"][value="manual"]:checked ~ .duration-end-date-field,
input[type="radio"][value="manual"]:checked ~ .duration-end-time-field,
input[type="radio"][value="manual"]:checked ~ .duration-end-seconds-field,
input[type="radio"][value="manual"]:checked ~ .duration-end-has-time-field,
input[type="radio"][value="manual"]:checked ~ .duration-start-label,
input[type="radio"][value="manual"]:checked ~ .duration-end-label {
    display: none;
}

input[type="radio"][value="manual"]:checked ~ .duration-start-date-field,
input[type="radio"][value="manual"]:checked ~ .duration-start-time-field,
input[type="radio"][value="manual"]:checked ~ .duration-start-seconds-field,
input[type="radio"][value="manual"]:checked ~ .duration-start-has-time-field,
input[type="radio"][value="manual"]:checked ~ .duration-end-date-field,
input[type="radio"][value="manual"]:checked ~ .duration-end-time-field,
input[type="radio"][value="manual"]:checked ~ .duration-end-seconds-field,
input[type="radio"][value="manual"]:checked ~ .duration-end-has-time-field {
    display: none;
}






dialog.modal {
  border: none;
  padding: 0;
  margin: 0;

  width: 100vw;
  height: 100vh;

  background: rgba(0, 0, 0, 0.55);

  display: flex;
  justify-content: center;
  align-items: center;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.bg-close-form {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.bg-close-button {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  cursor: default;
}

dialog.modal section.form {
  border: solid 1px var(--color-border);
  position: relative;
  background: white;
  padding: 2rem;
  width: 90%;
  max-width: 480px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  z-index: 10;
}














.landing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  padding: var(--padding-md)
}

.landing-header .content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
  color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  border-radius: 40px;
  padding: 0 50;
}

.landing-header .logo {
  position: absolute;
  left: 15px;
  color: var(--color-bg-secondary);
  font-family: "BBH Hegarty", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.landing-header .logo span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 25px;
}

.landing-header .logo svg {
  fill: var(--color-bg-secondary);
  width: 43px;
  transform: rotate(19deg);
}

.landing-header nav ul {
  display: flex;
  flex-direction: row;
  gap: var(--padding-sm)
}
.landing-header nav li {
  display: flex;
  flex-direction: row;
}

.landing-header section.login {
    position: absolute;
    right: 15px;
    display: flex;
    flex-direction: row;
    gap: var(--padding-sm)
  }

.landing-header button.sign-up {
  height: 100%;
}

.landing-header button.login {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--padding-sm)
}

.landing-header button.login svg {
  width: 25px;
  height: 25px;
}

.landing-showcase {
  margin-top: 120px;
  display: flex;
  flex-direction: row;
  height: 85vh;
}

.landing-showcase .left {
  flex: 0 0 50%;
  justify-content: flex-end;
}

.landing-showcase .right {
  flex: 0 0 50%;
  justify-content: flex-start;
}

.landing-showcase .left,
.landing-showcase .right {
  display: flex;
  align-items: center;
}

.landing-showcase .showcase-text {
  width: 80%;
  font-family: "BBH Hegarty", sans-serif;
  font-size: 2em;
}
.underline {
  position: relative;
  display: inline-block;
}

.underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.5rem;
  width: 100%;
  height: 4px;
  background: currentColor;
  border-radius: 2px;
}















/* auth base pages (login, signup) */
.auth-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
}

.auth-card {
  background-color: var(--color-bg);
  padding: var(--padding-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  width: 450px
}

.logo-container {
  width: 100%;
  height: 60px;
  background-color: var(--color-primary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  margin-bottom: var(--padding-md);
}

.auth-card .logo {
  color: var(--color-bg-secondary);
  font-family: "BBH Hegarty", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.auth-card .logo span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 25px;
}

.auth-card .logo svg {
  fill: var(--color-bg-secondary);
  width: 43px;
  transform: rotate(19deg);
}



/* Reminder screen */
.percent-bar-wrap {
    position: relative;
    border-radius: 4px;
    height: 20px;
    min-width: 80px;
    overflow: hidden;
    border: solid;
    border-width: 1px;
    border-color: var(--color-border);
}

.percent-bar-fill {
    position: absolute;
    top: 0; left: 0; height: 100%;
    background: var(--color-primary);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.percent-label {
    position: relative;
    z-index: 1;
    display: block;
    text-align: center;
    font-size: 0.75rem;
    line-height: 20px;
    font-weight: 600;
    color: #111;
}