body {
    background: linear-gradient(to bottom, #F1F6FD, #F3FAFA);
    background-attachment: fixed;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body.app-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#react-page-root {
  flex-grow: 1;
}

.container {
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.bg-dark {
  background-color: #1f2937;
}

.text-white {
  color: white;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-4 {
  gap: 1rem;
}

.text-xl {
  font-size: 1.25rem;
  font-weight: 600;
}

.font-semibold {
  font-weight: 600;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.text-sm {
  font-size: 0.875rem;
}

.hover-underline:hover {
  text-decoration: underline;
}

.no-underline {
  text-decoration: none;
}

#react-header-root {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 1rem;
}