@tailwind base;
@tailwind components;
@tailwind utilities;

/*

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-blue-200;
  }
}

*/
.main {
  display: flex;
  padding: 24px;
}

.left-container {
  padding-top: 24px;
  padding-left: 24px;
  height: calc(100vh - 24px);
  flex: 1;
}

.right-container {
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 24px;
  flex-direction: column;
}
.pesci-logo {
  margin-bottom: 108px;
}
.team-logo {
  width: 80px;
  height: 90px;
  padding: 14px 20px;
}

.left-image {
  width: 100%;
  overflow: hidden;
  height: 100%;
  border-radius: 16px;
}
.label {
  padding-top: 24px;
}

.sign-into-your-pesci {
  font-family: Plus Jakarta Sans;
  font-weight: 400;
  color: var(--tokens-text-secondary);
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

.light-text {
  font-family: Plus Jakarta Sans;
  font-weight: 400;
  color: #4c576a;
  font-size: 16px;
  letter-spacing: 0;
}

.field {
  flex-direction: column;
  display: flex;
  gap: 6px;
  padding-bottom: 16px;
  input {
    min-width: 380px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    position: relative;
    background-color: var(--tokens-surface-primary);
    border-radius: 8px;
    border: 1px solid;
    border-color: var(--tokens-border-secondary);
  }
  .forgot-password-container {
    font-family: Plus Jakarta Sans;
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    color: var(--button-link-text-icon, #3078f3);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px; /* 133.333% */

    .forgot-password-container-button {
      cursor: pointer;
      font-family: Plus Jakarta Sans;
      display: flex;
      justify-content: space-between;
      color: var(--button-link-text-icon, #3078f3);
      font-size: 12px;
      font-style: normal;
      font-weight: 500;
      border: none;
      background-color: #fff;
    }
  }
  a {
    text-decoration: none !important;
  }
}

.input-label {
  color: var(--text-primary, #111e34);
  font-family: Plus Jakarta Sans;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
}

.span {
  font-family: Plus Jakarta Sans;
  font-weight: 700;
}
.sub-text-wrapper {
  padding-bottom: 40px;
}

.text-wrapper {
  font-family: Plus Jakarta Sans;
  font-weight: 600;
  color: var(--tokens-text-primary);
  font-size: 24px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

.sign-in-with-microsoft-text {
  color: #111e34;
  font-family: Plus Jakarta Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}

.dash {
  width: 40px;
  height: 1px;
  flex-shrink: 0;
  margin-top: 32px;
  margin-bottom: 32px;
  background: var(--border-secondary, #d2d7e1);
}

.sign-in-button {
  display: flex;
  flex-direction: row;
  width: 400px;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid var(--border-secondary, #d2d7e1);
  background: var(--button-primary-text-icon, #fff);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: 999;
}

.forgot-password-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 560px;
  transform: translate(-50%, -50%);
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;

  .flex-container {
    display: flex;
  }
  .modal-header {
    padding: 12px 16px;
    border-bottom: 1px #e5e7eb solid;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 8px;
  }
  .modal-title-text {
    color: #111e34;
    font-size: 16px;
    font-family: Plus Jakarta Sans;
    font-weight: 600;
    word-wrap: break-word;
  }

  .main-modal-content {
    padding: 24px;
  }

  .instruction-text {
    width: 100%;
    color: #111e34;
    font-size: 12px;
    font-family: Plus Jakarta Sans;
    font-weight: 500;
    line-height: 16px;
    word-wrap: break-word;
    padding-bottom: 32px;
  }

  .primary-button {
    border-radius: 8px;
    background: var(--button-primary-surface, #3078f3);
    display: flex;
    padding: 8px;
    justify-content: center;
    align-items: center;
    border: none;
    color: var(--button-primary-text-icon, #fff);
  }

  .footer {
    background: var(--surface-secondary, #f6f8fb);
    padding: 12px 16px;
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    gap: 8px;
    border-radius: 8px;
  }
  .success-modal-content {
    display: none;
  }
  .success-header {
    color: #111e34;
    font-size: 16px;
    font-family: Plus Jakarta Sans;
    font-weight: 600;
    display: flex;
    justify-content: center;
  }
  .success-footer {
    display: none;
  }
  .success-main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #111e34;
    font-size: 12px;
    font-family: Plus Jakarta Sans;
    font-weight: 500;
    line-height: 16px;
    word-wrap: break-word;
  }
  .error-text {
    color: var(--status-error, #f03636);
    font-family: Plus Jakarta Sans;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    padding-left: 24px;
    display: none;
  }
  .cancel-button {
    display: flex;
    flex-direction: row;
    padding: 8px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid var(--border-secondary, #d2d7e1);
    background: var(--button-primary-text-icon, #fff);
  }
}
.login-button {
  width: 100%;
  padding: 10px 8px;
  color: white;
  background-color: #3078f3;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  font-family: Plus Jakarta Sans;
  font-weight: 500;
  line-height: 20px;
  word-wrap: break-word;
  cursor: pointer;
}
.header-content-container {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-primary, #eef1f7);
  background: var(--surface-primary, #fff);
  padding-left: 24px;
  padding-top: 24px;
  padding-bottom: 24px;
  flex-direction: row;
  justify-content: start;
}

/* player photo */
.player-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 20px;
}
.player-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}
.image-number-container {
  position: relative;
}
.player-number {
  color: var(--text-always-white, #fff);
  text-align: center;
  font-family: 'Racing Sans One';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  width: 24px;
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: var(--spacing-4, 4px);
  border: 2px solid var(--surface-primary, #fff);
  box-shadow:
    0px 0px 1px 0px rgba(50, 50, 70, 0.24),
    0px 3px 8px -1px rgba(50, 50, 70, 0.05);
}

.name-position-container {
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.player-name {
  color: var(--text-primary, #111e34);
  font-family: 'Plus Jakarta Sans';
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.position {
  color: var(--text-brand, #5f0041);
  font-family: 'Plus Jakarta Sans';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
/* player photo end */

.stats-header-text {
  color: var(--text-secondary, #4c576a);
  font-family: 'Plus Jakarta Sans';
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.stats-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 34px 24px 0 24px;
}
#stats-container {
  padding: 12px 18px;
  margin-right: 24px;
  margin-left: 24px;
  background-color: white;
  border-radius: 12px;
  margin-top: 12px;
}
.stat-label {
  color: var(--text-primary, #111e34);
  font-family: 'Plus Jakarta Sans';
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.stat-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-primary, #eef1f7);
}
.stat-row:last-child {
  border-bottom: none;
}
.stat-value {
  color: var(--text-primary, #111e34);
  text-align: right;
  font-family: 'Plus Jakarta Sans';
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
#player-stats-select {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M3.64645 4.64645C3.84171 4.45118 4.15829 4.45118 4.35355 4.64645L6 6.29289L7.64645 4.64645C7.84171 4.45118 8.15829 4.45118 8.35355 4.64645C8.54882 4.84171 8.54882 5.15829 8.35355 5.35355L6.35355 7.35355C6.15829 7.54882 5.84171 7.54882 5.64645 7.35355L3.64645 5.35355C3.45118 5.15829 3.45118 4.84171 3.64645 4.64645Z" fill="%234C576A"/></svg>');
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid var(--button-stroke-stroke, #e4e7ee);
  color: var(--button-stroke-text-icon, #4c576a);
  font-feature-settings:
    'liga' off,
    'clig' off;
  font-family: 'Plus Jakarta Sans';
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  min-width: 142px;
  option {
    color: var(--button-stroke-text-icon, #4c576a);
    font-feature-settings:
      'liga' off,
      'clig' off;
    font-family: 'Plus Jakarta Sans';
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px; /* 133.333% */
  }
}
.currency-symbol {
  margin-top: 4px;
  color: var(--text-always-white, #fff);
  font-family: 'Plus Jakarta Sans';
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
.player-stats-select {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M3.64645 4.64645C3.84171 4.45118 4.15829 4.45118 4.35355 4.64645L6 6.29289L7.64645 4.64645C7.84171 4.45118 8.15829 4.45118 8.35355 4.64645C8.54882 4.84171 8.54882 5.15829 8.35355 5.35355L6.35355 7.35355C6.15829 7.54882 5.84171 7.54882 5.64645 7.35355L3.64645 5.35355C3.45118 5.15829 3.45118 4.84171 3.64645 4.64645Z" fill="%234C576A"/></svg>');
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid var(--button-stroke-stroke, #e4e7ee);
  color: var(--button-stroke-text-icon, #4c576a);
  font-feature-settings:
    'liga' off,
    'clig' off;
  font-family: 'Plus Jakarta Sans';
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  min-width: 142px;
  option {
    color: var(--button-stroke-text-icon, #4c576a);
    font-feature-settings:
      'liga' off,
      'clig' off;
    font-family: 'Plus Jakarta Sans';
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px; /* 133.333% */
  }
}

#alerts-container {
  padding: 12px 18px;
  margin-right: 24px;
  border-radius: 12px;
  margin-top: 12px;
}

.total-numbers-container {
  display: flex;
  flex-direction: column;
  border-radius: var(--spacing-12, 12px);
  background: var(--grey-900, #111e34);
  padding: 20px 16px 24px 16px;
  .numbers-container {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 16px;
  }
  .total-label {
    color: var(--text-always-white, #fff);
    text-align: center;
    font-family: Plus Jakarta Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-bottom: 16px;
  }
}
.number-amount {
  color: var(--text-always-white, #fff);
  font-family: 'Plus Jakarta Sans';
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  padding-bottom: 8px;
  line-height: normal;
}
.number-secondary-label {
  color: var(--text-placeholder, #bec4d0);
  text-align: center;
  font-family: 'Plus Jakarta Sans';
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.number-label-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  border-right: 1px solid var(--border-tertiary, #9da5b4);
}
.number-label-container:last-child {
  border-right: none;
}
.header-content-container {
  color: var(--text-primary, #111e34);
  font-family: 'Plus Jakarta Sans';
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.total-numbers-container {
  flex: 1;
}
.total-numbers-container-inverse {
  border-radius: var(--spacing-12, 12px);
  background: var(--surface-primary, #fff);

  /* Shadow/Outline */
  box-shadow:
    0px 0px 1px 0px rgba(50, 50, 70, 0.24),
    0px 3px 8px -1px rgba(50, 50, 70, 0.05);
}

.total-numbers-container-inverse {
  .total-label-inverse {
    color: var(--text-primary, #111e34);
    text-align: center;
    font-family: 'Plus Jakarta Sans';
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }

  .number-secondary-label {
    color: var(--text-secondary, #4c576a);
    text-align: center;
    font-family: 'Plus Jakarta Sans';
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .number-amount {
    color: var(--text-primary, #111e34);
    text-align: center;
    font-family: 'Plus Jakarta Sans';
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  .number-label-container {
    border-right: 1px solid var(--border-secondary, #d2d7e1);
  }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
:root {
  --bgprimary: rgba(255, 255, 255, 1);
  --shadow-outline: 0px 3px 8px -1px rgba(50, 50, 70, 0.05),
    0px 0px 1px 0px rgba(50, 50, 70, 0.24);
  --shadow-modal: 0px 20px 40px 0px rgba(0, 0, 0, 0.2);
  --primitives-grey-white: rgba(255, 255, 255, 1);
  --primitives-grey-100: rgba(246, 248, 251, 1);
  --primitives-grey-200: rgba(238, 241, 247, 1);
  --primitives-grey-300: rgba(228, 231, 238, 1);
  --primitives-grey-400: rgba(210, 215, 225, 1);
  --primitives-grey-500: rgba(190, 196, 208, 1);
  --primitives-grey-600: rgba(157, 165, 180, 1);
  --primitives-grey-700: rgba(112, 122, 141, 1);
  --primitives-grey-800: rgba(76, 87, 106, 1);
  --primitives-grey-900: rgba(17, 30, 52, 1);
  --primitives-grey-black: rgba(0, 0, 0, 1);
  --primitives-accent-green: rgba(70, 187, 68, 1);
  --primitives-accent-green-10: rgba(70, 187, 68, 0.1);
  --primitives-accent-orange: rgba(255, 159, 28, 1);
  --primitives-accent-orange-10: rgba(255, 159, 28, 0.1);
  --primitives-accent-red: rgba(240, 54, 54, 1);
  --primitives-accent-red-10: rgba(240, 54, 54, 0.1);
  --primitives-accent-red-60: rgba(240, 54, 54, 0.6);
  --primitives-accent-blue: rgba(48, 120, 243, 1);
  --primitives-accent-blue-10: rgba(48, 120, 243, 0.1);
  --primitives-accent-blue-60: rgba(48, 120, 243, 0.6);
  --tokens-text-primary: var(--primitives-grey-900);
  --tokens-text-secondary: var(--primitives-grey-800);
  --tokens-text-tertiary: var(--primitives-grey-600);
  --tokens-text-placeholder: var(--primitives-grey-500);
  --tokens-text-always-white: var(--primitives-grey-white);
  --tokens-surface-primary: var(--primitives-grey-white);
  --tokens-surface-secondary: var(--primitives-grey-100);
  --tokens-surface-tertiary: var(--primitives-grey-200);
  --tokens-border-primary: var(--primitives-grey-200);
  --tokens-border-secondary: var(--primitives-grey-400);
  --tokens-button-primary-surface: var(--primitives-accent-blue);
  --tokens-border-tertiary: var(--primitives-grey-600);
  --tokens-button-grey-surface: var(--primitives-grey-200);
  --tokens-button-primary-text-icon: var(--primitives-grey-white);
  --tokens-button-grey-text-icon: var(--primitives-grey-700);
  --tokens-button-grey-inactive-surface: var(--primitives-grey-200);
  --tokens-button-grey-inactive-text-icon: var(--primitives-grey-600);
  --tokens-button-stroke-surface: var(--primitives-grey-white);
  --tokens-button-danger-surface: var(--primitives-accent-red);
  --tokens-button-stroke-text-icon: var(--primitives-grey-800);
  --tokens-button-danger-text-icon: var(--primitives-grey-white);
  --tokens-button-danger-inactive-surface: var(--primitives-grey-200);
  --tokens-button-danger-inactive-text-icon: var(--primitives-grey-600);
  --tokens-button-link-text-icon: var(--primitives-accent-blue);
  --tokens-status-success: var(--primitives-accent-green);
  --tokens-status-warning: var(--primitives-accent-orange);
  --tokens-status-error: var(--primitives-accent-red);
  --tokens-status-active: var(--primitives-accent-blue);
  --tokens-status-active-10: var(--primitives-accent-blue-10);
  --tokens-button-primary-inactive-surface: var(--primitives-grey-200);
  --tokens-button-primary-inactive-text-icon: var(--primitives-grey-600);
  --tokens-button-stroke-stroke: var(--primitives-grey-300);
  --tokens-button-stroke-inactive-surface: var(--primitives-grey-white);
  --tokens-button-stroke-inactive-text-icon: var(--primitives-grey-500);
  --tokens-button-stroke-inactive-stroke: var(--primitives-grey-300);
}

[data-tokens-mode='light'] {
  --tokens-text-primary: var(--primitives-grey-900);
  --tokens-text-secondary: var(--primitives-grey-800);
  --tokens-text-tertiary: var(--primitives-grey-600);
  --tokens-surface-primary: var(--primitives-grey-white);
  --tokens-surface-secondary: var(--primitives-grey-100);
  --tokens-surface-tertiary: var(--primitives-grey-200);
  --tokens-border-primary: var(--primitives-grey-200);
  --tokens-border-secondary: var(--primitives-grey-400);
  --tokens-border-tertiary: var(--primitives-grey-600);
  --tokens-button-grey-surface: var(--primitives-grey-200);
  --tokens-button-grey-text-icon: var(--primitives-grey-700);
  --tokens-button-grey-inactive-surface: var(--primitives-grey-200);
  --tokens-button-grey-inactive-text-icon: var(--primitives-grey-600);
  --tokens-button-stroke-surface: var(--primitives-grey-white);
  --tokens-button-stroke-text-icon: var(--primitives-grey-800);
  --tokens-button-danger-inactive-surface: var(--primitives-grey-200);
  --tokens-button-danger-inactive-text-icon: var(--primitives-grey-600);
  --tokens-button-primary-inactive-surface: var(--primitives-grey-200);
  --tokens-button-primary-inactive-text-icon: var(--primitives-grey-600);
  --tokens-button-stroke-stroke: var(--primitives-grey-300);
  --tokens-button-stroke-inactive-surface: var(--primitives-grey-white);
  --tokens-button-stroke-inactive-text-icon: var(--primitives-grey-500);
  --tokens-button-stroke-inactive-stroke: var(--primitives-grey-300);
}

[data-tokens-mode='dark'] {
  --tokens-text-primary: var(--primitives-grey-100);
  --tokens-text-secondary: var(--primitives-grey-200);
  --tokens-text-tertiary: var(--primitives-grey-500);
  --tokens-surface-primary: var(--primitives-grey-900);
  --tokens-surface-secondary: var(--primitives-grey-800);
  --tokens-surface-tertiary: var(--primitives-grey-700);
  --tokens-border-primary: var(--primitives-grey-800);
  --tokens-border-secondary: var(--primitives-grey-600);
  --tokens-border-tertiary: var(--primitives-grey-500);
  --tokens-button-grey-surface: var(--primitives-grey-800);
  --tokens-button-grey-text-icon: var(--primitives-grey-300);
  --tokens-button-grey-inactive-surface: var(--primitives-grey-800);
  --tokens-button-grey-inactive-text-icon: var(--primitives-grey-700);
  --tokens-button-stroke-surface: var(--primitives-grey-800);
  --tokens-button-stroke-text-icon: var(--primitives-grey-200);
  --tokens-button-danger-inactive-surface: var(--primitives-grey-800);
  --tokens-button-danger-inactive-text-icon: var(--primitives-grey-700);
  --tokens-button-primary-inactive-surface: var(--primitives-grey-800);
  --tokens-button-primary-inactive-text-icon: var(--primitives-grey-700);
  --tokens-button-stroke-stroke: var(--primitives-grey-600);
  --tokens-button-stroke-inactive-surface: var(--primitives-grey-800);
  --tokens-button-stroke-inactive-text-icon: var(--primitives-grey-600);
  --tokens-button-stroke-inactive-stroke: var(--primitives-grey-600);
}

.root-container {
  display: flex;
  height: 100%;
}

.left-side-nav {
  width: 280px;
  flex-shrink: 0;
  padding: 24px 0px 24px 24px;
}

.nav {
  height: 100%;
  border-radius: 16px;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-top-container {
  width: 100%;
}

.collapse-menu-button {
  background-color: transparent;
  border: none;
  margin-bottom: -4px;
}
.nav-logo-header-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-team-logo {
  height: 30px;
  width: 28px;
  margin: 5px 7px 5px 7px;
}

.nav-item-container {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  gap: 12px;
}

.nav-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.nav-item {
  text-decoration: none;
  border-radius: var(--spacing-8, 8px);
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 12px;
  color: var(--text-always-white, #fff);
  font-feature-settings:
    'liga' off,
    'clig' off;
  font-family: 'Plus Jakarta Sans';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.nav-footer-elements {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 24px;
}

.right-side-content-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.header-content-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding-top: 24px;
}

.right-side-alerts-and-content {
  display: flex;
  width: 100%;
  height: calc(100% - 112px);
}

.nav-user-button {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 8px;
  padding: 12px;
  color: var(--text-always-white, #fff);
  font-family: Plus Jakarta Sans;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  display: inline-block;
}

.nav-company-logo {
  margin-top: 20px;
  display: flex;
  width: 120px;
  height: 24px;
  justify-content: center;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.nav-header {
  display: flex;
  padding-bottom: 12px;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  color: var(--text-always-white, #fff);
  font-family: Plus Jakarta Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.right-side-nav {
  max-width: 480px;
  flex-shrink: 0;
  flex-grow: 1;
  background: var(--surface-secondary, #f6f8fb);
}

.main-content {
  flex-grow: 2;
  padding: 24px;
  overflow: auto;
}
body {
  margin: 0;
  height: 100%;
}
html {
  height: 100%;
}

/* User dropdown styles */
.nav-user-dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
}

.nav-user-dropdown-menu {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  margin-bottom: 8px;
  overflow: hidden;
}

.nav-user-dropdown-menu.show {
  display: block;
}

.nav-user-dropdown-item {
  display: block;
  padding: 12px 16px;
  color: var(--tokens-text-primary);
  text-decoration: none;
  font-family: 'Plus Jakarta Sans';
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.nav-user-dropdown-item:hover {
  background-color: var(--tokens-surface-secondary);
  text-decoration: none;
  color: var(--tokens-text-primary);
}

.nav-user-dropdown-item:active {
  background-color: var(--tokens-surface-tertiary);
}
