:root {
  --brand-primary: #ee1c25;
  --brand-secondary: #242021;
  --paper: #f6f7fb;
  --surface: #ffffff;
  --surface-soft: #f8f9fd;
  --line: #e9ebf4;
  --ink: #12131a;
  --muted: #6c7285;
  --font-family-base: "Plus Jakarta Sans", sans-serif;
  --font-size-body: 0.95rem;
  --font-size-small: 0.84rem;
  --font-size-h1: 1.45rem;
  --font-size-h2: 1.2rem;
  --font-size-h3: 1.08rem;
  --font-size-h4: 0.98rem;
  --font-size-h5: 0.9rem;
  --font-size-h6: 0.82rem;
  --font-weight-regular: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --radius-button: 12px;
  --footer-height: 3.75rem;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-body);
  line-height: 1.45;
  font-weight: var(--font-weight-regular);
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 0%, rgba(238, 28, 37, 0.12) 0%, rgba(238, 28, 37, 0) 40%),
    radial-gradient(circle at 95% 10%, rgba(36, 32, 33, 0.08) 0%, rgba(36, 32, 33, 0) 45%),
    linear-gradient(180deg, #fcfcfe 0%, #f4f6fb 100%);
}

body.sidebar-collapsed .app-sidebar {
  transform: translateX(0);
  width: 92px;
}

body.sidebar-collapsed .app-content {
  left: 92px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.metric-value {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-semibold);
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--font-size-h1);
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

h4 {
  font-size: var(--font-size-h4);
}

h5 {
  font-size: var(--font-size-h5);
}

h6 {
  font-size: var(--font-size-h6);
}

p,
li,
td,
th,
label,
input,
select,
textarea {
  font-size: var(--font-size-body);
}

.app-nav {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.app-shell {
  height: 100%;
  overflow: hidden;
}

.app-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 260px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-right: 1px solid var(--line);
  padding: 1.25rem 1rem;
  z-index: 1040;
  transition: transform 0.25s ease;
}

.sidebar-brand {
  padding: 0.25rem 0.5rem 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.sidebar-brand-text {
  transition: opacity 0.2s ease;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.sidebar-section-title {
  padding: 0.9rem 0.75rem 0.35rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  color: var(--brand-secondary);
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.sidebar-link-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
}

.sidebar-link-icon svg {
  width: 20px;
  height: 20px;
}

.sidebar-link-text {
  white-space: nowrap;
}

.sidebar-link:hover {
  background: var(--surface-soft);
  color: var(--ink);
  transform: translateX(2px);
}

.sidebar-link.active {
  background: linear-gradient(135deg, rgba(238, 28, 37, 0.12) 0%, rgba(238, 28, 37, 0.06) 100%);
  color: var(--brand-primary);
}

body.sidebar-collapsed .sidebar-brand {
  padding-left: 0.1rem;
  padding-right: 0.1rem;
}

body.sidebar-collapsed .sidebar-brand-text,
body.sidebar-collapsed .sidebar-link-text,
body.sidebar-collapsed .sidebar-section-title {
  opacity: 0;
  width: 0;
  height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

body.sidebar-collapsed .sidebar-link {
  justify-content: center;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.sidebar-overlay {
  display: none;
}

.app-content {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 260px;
  right: 0;
  transition: left 0.25s ease;
}

.app-main-wrap {
  position: absolute;
  top: 0;
  bottom: var(--footer-height);
  left: 0;
  right: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 0;
}

body:not(.calendar-page) .app-main-wrap {
  overflow-y: auto !important;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 1030;
}

.sidebar-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.sidebar-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.brand-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.navbar-brand,
.nav-link,
.footer {
  color: var(--brand-secondary) !important;
}

.nav-link {
  border-radius: 10px;
  padding: 0.5rem 0.8rem !important;
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-semibold);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
  background-color: var(--surface-soft);
  color: var(--ink) !important;
}

.btn-primary {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff !important;
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.01em;
  box-shadow: 0 8px 16px rgba(238, 28, 37, 0.2);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--brand-secondary);
  border-color: var(--brand-secondary);
  color: #fff !important;
}

.btn {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.01em;
  border-radius: var(--radius-button) !important;
}

.btn:focus,
.btn-primary:focus,
.form-control:focus,
.form-select:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(238, 28, 37, 0.2) !important;
  border-color: var(--brand-primary) !important;
}

.btn-outline-dark {
  border-color: var(--line);
  color: var(--ink) !important;
  background: #fff;
  box-shadow: none;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus,
.btn-outline-dark:active,
.btn-outline-dark.active,
.btn-outline-dark:visited {
  background: var(--surface-soft);
  border-color: #d8dced;
  color: var(--ink) !important;
}

.btn-outline-dark:disabled,
.btn-outline-dark.disabled,
.btn-outline-dark:disabled:hover,
.btn-outline-dark.disabled:hover,
.btn-outline-dark:disabled:focus,
.btn-outline-dark.disabled:focus {
  color: var(--ink) !important;
  background: #eef1f7;
  border-color: #d8dced;
  opacity: 1;
}

.btn-outline-danger {
  color: #842029 !important;
}

.btn-outline-danger:hover {
  color: #fff !important;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:focus,
.btn-outline-danger:active,
.btn-outline-danger.active,
.btn-outline-danger:visited {
  color: #842029 !important;
}

/* Global safeguard: never allow washed-out unreadable text on disabled outline buttons */
.btn[class*="btn-outline-"]:disabled,
.btn[class*="btn-outline-"].disabled,
.btn[class*="btn-outline-"]:disabled:hover,
.btn[class*="btn-outline-"].disabled:hover,
.btn[class*="btn-outline-"]:disabled:focus,
.btn[class*="btn-outline-"].disabled:focus {
  color: var(--ink) !important;
  opacity: 1;
}

.btn-sm {
  font-size: var(--font-size-small);
  border-radius: var(--radius-button) !important;
}

.card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(17, 24, 39, 0.06);
}

.card h4 {
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-semibold);
}

.login-card {
  position: relative;
  overflow: hidden;
}

.login-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary) 0%, #ff6b73 100%);
}

.login-brand-wrap {
  width: 88px;
  height: 88px;
  border-radius: 20px;
  margin: 0 auto;
  background: linear-gradient(145deg, #fff 0%, #fff7f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f2dfe1;
}

.login-logo {
  max-width: 56px;
  height: auto;
}

.login-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  color: var(--brand-primary);
  background: rgba(238, 28, 37, 0.1);
}

.login-links a {
  color: var(--brand-secondary);
  font-weight: 500;
  text-decoration: none;
}

.login-links a:hover {
  color: var(--brand-primary);
  text-decoration: underline;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  gap: 0.75rem;
}

.page-header h2,
.page-header h1 {
  margin: 0;
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-semibold);
  color: var(--brand-secondary);
}

.text-muted,
small,
.form-text {
  color: var(--muted) !important;
}

.form-control,
.form-select,
textarea {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-size: var(--font-size-body);
}

.form-floating > label {
  color: var(--muted);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.alert {
  border-radius: 12px;
  border: 1px solid transparent;
}

.alert-success {
  border-color: #bfebcf;
  background: #f2fff6;
  color: #165b33;
}

.alert-danger {
  border-color: #f6c4c7;
  background: #fff6f6;
  color: #8d1f28;
}

.metric-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9faff 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
  height: 100%;
}

.metric-label {
  color: var(--muted);
  font-size: var(--font-size-small);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.metric-value {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0.4rem 0 0.2rem;
}

.metric-sub {
  color: var(--muted);
  font-size: var(--font-size-small);
}

.panel-card {
  position: relative;
}

.panel-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.panel-title-wrap h4 {
  margin: 0;
}

.panel-count {
  color: var(--muted);
  font-size: var(--font-size-small);
}

.task-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  white-space: nowrap;
}

.task-status-open {
  color: #9f1239;
  background: #ffe4e6;
  border-color: #fecdd3;
}

.task-status-progress {
  color: #854d0e;
  background: #fef3c7;
  border-color: #fde68a;
}

.task-status-closed {
  color: #166534;
  background: #dcfce7;
  border-color: #bbf7d0;
}

/* Styled select that looks like a badge */
.task-status-select {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='6'%3E%3Cpath d='M0 0l4 6 4-6z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.4rem center;
  padding-right: 1.2rem;
}

.task-status-select:focus {
  outline: 2px solid var(--brand-primary);
  outline-offset: 1px;
}

.task-status-select.task-status-open {
  color: #9f1239;
  background-color: #ffe4e6;
  border-color: #fecdd3;
}

.task-status-select.task-status-progress {
  color: #854d0e;
  background-color: #fef3c7;
  border-color: #fde68a;
}

.task-status-select.task-status-closed {
  color: #166534;
  background-color: #dcfce7;
  border-color: #bbf7d0;
}

.raven-table thead th {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
}

.raven-table tbody td {
  border-color: #f0f2f8;
}

/* Icon action buttons */
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--brand-secondary);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  text-decoration: none;
}

.icon-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.icon-btn:hover {
  background: var(--brand-secondary);
  border-color: var(--brand-secondary);
  color: #fff;
}

.icon-btn:hover svg {
  stroke: #fff;
}

.icon-btn-danger:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}

.icon-btn-danger:hover svg {
  stroke: #fff;
}

.list-group-item {
  position: relative;
}

.dropzone {
  border: 2px dashed var(--brand-primary);
  border-radius: 14px;
  background-color: rgba(238, 28, 37, 0.05);
  padding: 1rem;
  text-align: center;
  transition: all 0.2s ease;
}

.dropzone.dragover {
  background-color: rgba(36, 32, 33, 0.1);
  border-color: var(--brand-secondary);
}

.calendar-wrap {
  background: var(--surface);
  border-radius: 18px;
  padding: 1rem;
  border: 1px solid var(--line);
  box-shadow: 0 16px 32px rgba(17, 24, 39, 0.06);
  position: relative;
}

.calendar-event-tooltip {
  position: fixed;
  z-index: 1500;
  width: min(320px, calc(100vw - 32px));
  background: rgba(16, 18, 26, 0.96);
  color: #fff;
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
  font-size: 0.84rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.14s ease, transform 0.14s ease;
  pointer-events: none;
}

.calendar-event-tooltip.show {
  opacity: 1;
  transform: translateY(0);
}

.calendar-event-tooltip .cet-title {
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.calendar-event-tooltip .cet-row {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
}

.calendar-event-tooltip .cet-label {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.calendar-event-tooltip .cet-note {
  margin-top: 0.45rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 0.45rem;
  color: rgba(255, 255, 255, 0.9);
}

/* FullCalendar theme aligned with customer styling */
.calendar-wrap .fc {
  --fc-border-color: var(--line);
  --fc-page-bg-color: var(--surface);
  --fc-neutral-bg-color: var(--surface-soft);
  --fc-list-event-hover-bg-color: color-mix(in srgb, var(--brand-primary) 9%, white 91%);
  color: var(--ink);
}

.calendar-wrap .fc .fc-toolbar-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brand-secondary);
}

.calendar-wrap .fc .fc-button {
  background: #fff;
  color: var(--brand-secondary);
  border: 1px solid var(--line);
  border-radius: var(--radius-button);
  padding: 0.38rem 0.72rem;
  font-weight: 600;
  box-shadow: none;
}

.calendar-wrap .fc .fc-button:hover,
.calendar-wrap .fc .fc-button:focus {
  background: color-mix(in srgb, var(--brand-primary) 7%, white 93%);
  border-color: color-mix(in srgb, var(--brand-primary) 18%, var(--line) 82%);
  color: var(--ink);
  box-shadow: none;
  outline: none;
}

.calendar-wrap .fc .fc-button-primary:not(:disabled).fc-button-active,
.calendar-wrap .fc .fc-button-primary:not(:disabled):active {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
  box-shadow: none;
  outline: none;
}

.calendar-wrap .fc .fc-col-header-cell-cushion,
.calendar-wrap .fc .fc-daygrid-day-number {
  color: var(--brand-secondary);
  text-decoration: none;
}

.calendar-wrap .fc .fc-day-today {
  background: color-mix(in srgb, var(--brand-primary) 9%, white 91%) !important;
}

.calendar-wrap .fc .fc-event {
  border-radius: 8px;
  font-weight: 600;
  padding: 1px 4px;
  cursor: pointer;
}

.calendar-wrap .fc .fc-bundle-content {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.calendar-wrap .fc .fc-bundle-title {
  line-height: 1.2;
}

.calendar-wrap .fc .fc-bundle-meta {
  font-size: 0.68rem;
  line-height: 1.1;
  opacity: 0.82;
}

.calendar-wrap .fc .fc-event.fc-bundle-parent {
  box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.22);
}

.calendar-wrap .fc .fc-event.fc-event-subproject {
  border-style: dashed;
}

.calendar-wrap .fc .fc-event.fc-bundle-child {
  border-left-width: 4px;
}

/* List view: stronger project/subproject grouping visuals */
.calendar-wrap .fc .fc-list {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.calendar-wrap .fc .fc-list-day-cushion {
  background: var(--surface-soft);
  color: var(--brand-secondary);
  font-weight: 700;
}

.calendar-wrap .fc .fc-list-event td {
  border-color: color-mix(in srgb, var(--line) 90%, white 10%);
  vertical-align: middle;
}

.calendar-wrap .fc .fc-list-event-time {
  display: none !important;
}

.calendar-wrap .fc .fc-list-event .fc-list-event-title {
  width: 100%;
  position: relative;
}

.calendar-wrap .fc .fc-list-event .fc-list-event-title a {
  display: flex;
  align-items: center;
  width: 100%;
  color: var(--ink) !important;
  text-decoration: none;
}

.calendar-wrap .fc .fc-list-title-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0.75rem;
}

.calendar-wrap .fc .fc-list-title-text {
  font-weight: 600;
  color: var(--ink);
  flex: 1;
}

.calendar-wrap .fc .fc-list-location {
  font-size: 0.8rem;
  color: var(--muted);
  white-space: nowrap;
  margin-left: auto;
}

.calendar-wrap .fc .fc-list-event.fc-event-project {
  background: color-mix(in srgb, var(--brand-secondary) 6%, white 94%);
}

.calendar-wrap .fc .fc-list-event.fc-event-subproject {
  background: color-mix(in srgb, var(--brand-primary) 8%, white 92%);
}

.calendar-wrap .fc .fc-list-event.fc-event-subproject .fc-list-event-title {
  padding-left: 1.45rem;
}

.calendar-wrap .fc .fc-list-event.fc-event-subproject .fc-list-event-title::before {
  content: "";
  position: absolute;
  left: 0.6rem;
  top: -14px;
  bottom: -14px;
  width: 2px;
  background: var(--project-color, var(--brand-primary));
  opacity: 0.45;
}

.calendar-wrap .fc .fc-list-event.fc-event-subproject .fc-list-event-title::after {
  content: "";
  position: absolute;
  left: 0.28rem;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 999px;
  background: var(--project-color, var(--brand-primary));
}

.calendar-wrap .fc .fc-list-event.fc-event-subproject:not(.fc-bundle-linked-top) .fc-list-event-title::before {
  top: 50%;
}

.calendar-wrap .fc .fc-list-event.fc-event-subproject:not(.fc-bundle-linked-bottom) .fc-list-event-title::before {
  bottom: 50%;
}

.calendar-wrap .fc .fc-list-event-dot {
  border-color: currentColor;
  border-width: 6px;
}

body.calendar-page {
  overflow: hidden;
}

body.calendar-page .app-content {
  overflow: hidden;
}

body.calendar-page .app-main-wrap {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

body.calendar-page .app-main-wrap > header {
  flex-shrink: 0;
}

body.calendar-page .app-main-wrap > .container-fluid {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

body.calendar-page main[role="main"] {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

body.calendar-page main[role="main"] > .page-header {
  flex-shrink: 0;
}

body.calendar-page .calendar-wrap {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

body.calendar-page #calendar {
  flex: 1;
  min-height: 0;
}

footer.footer {
  border-top: 1px solid var(--line) !important;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--footer-height);
  display: flex;
  align-items: center;
  z-index: 10;
}

.public-shell {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.public-main-wrap {
  position: absolute;
  top: 0;
  bottom: var(--footer-height);
  left: 0;
  right: 0;
  overflow-y: auto;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .app-sidebar {
    transform: translateX(-100%);
    width: 260px;
  }

  body.sidebar-open .app-sidebar {
    transform: translateX(0);
  }

  .sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.22);
    z-index: 1035;
  }

  body.sidebar-open .sidebar-overlay {
    display: block;
  }

  .app-content {
    left: 0;
  }

  body.sidebar-collapsed .app-content {
    left: 0;
  }

  .page-header {
    flex-direction: column;
    align-items: stretch;
  }
}