@import url('fonts.css');
@import url('general.css');

:root{
  --color-accent-green: #0F9848;
  --color-accent-green-variant-1: #418E3E;
  --color-accent-green-variant-2: #5EA87D;
  --color-accent-green-variant-3: #BFE2C9;
  --color-accent-blue: #2F73B0;
  --color-accent-blue-variant-1: #3A72B5;
  --color-accent-blue-variant-2: #1B3A5F;
  --color-accent-blue-variant-3: #DBF4FF;
  --color-accent-pink: #FF9797;
  --color-accent-pink-variant-1: #EA9999;
  --color-accent-pink-variant-2: #EECDCD;
  --color-accent-pink-variant-3: #F9E6CF;
 
  --color-light: #FFFFFF;
  --color-light-bg: #F8F8F8;
  --color-alert: #E95F59;
  --color-alert-light: #FDD5D5;
  --color-selected-blue: #DBF4FF;
  --color-dark: #333333;
  --color-unselected: #989898;

  /* --color-light: #FFFFFF;
  --color-secondary: #F4F4F4;
  --color-dark: #333333;
  --color-gradient1: #333333;
  --color-gradient-mid: #484848;
  --color-gradient2: #585858;
  --color-unselected: #9F9F9F;
  --color-accent: #D4A34D;
  --color-accent-dark: #A28446;
  --color-alert: #FF6366;
  --color-seperator: rgb(45, 45, 45, 0.2); */

  --x6-small: 0.1em;
  --x5-small: 0.2em;
  --x4-small: 0.3em;
  --xxx-small: 0.4em;
  --xx-small: 0.5em;
  --x-small: 0.6em;
  --small: 0.8em;
  --reg-size: 1em;
  --large: 1.2em;
  --x-large: 1.4em;
  --xx-large: 1.6em;
  --xxx-large: 2.4em;
  --x4-large: 3.2em;
  --x5-large: 4.0em;
  --x6-large: 4.8em;
  --x7-large: 6.4em;
  --x8-large: 8.2em;
  --x9-large: 12.8em;
  --x10-large: 16.4em;
  --wide: 0.1em;
  

  --default-font: "SF Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
}

@media (max-width: 1366px) {
  :root .info-page {
    --x4-small: 0.1em;
    --xxx-small: 0.2em;
    --xx-small: 0.3em;
    --x-small: 0.4em;
    --small: 0.6em;
    --reg-size: 0.8em;
    --large: 1em;
    --x-large: 1.2em;
    --xx-large: 1.4em;
    --xxx-large: 2.2em;
    --x4-large: 3.0em;
    --x5-large: 3.6em;
    --x6-large: 4.0em;
    --x7-large: 4.8em;
    --x8-large: 6.4em;
    --x9-large: 8.6em;
    --x10-large: 9.6em;
    --wide: 0.115em;
  }
}

@media (max-width: 800px) {
  :root {
    --x4-small: 0.1em;
    --xxx-small: 0.2em;
    --xx-small: 0.3em;
    --x-small: 0.4em;
    --small: 0.6em;
    --reg-size: 0.8em;
    --large: 1em;
    --x-large: 1.2em;
    --xx-large: 1.4em;
    --xxx-large: 2.2em;
    --x4-large: 3.0em;
    --x5-large: 3.6em;
    --x6-large: 4.0em;
    --x7-large: 4.8em;
    --x8-large: 6.4em;
    --x9-large: 8.6em;
    --x10-large: 9.6em;
    --wide: 0.115em;
  }
}

@media (min-width: 1980px) {
  :root {
    --x6-small: 0.110em;
    --x5-small: 0.235em;
    --x4-small: 0.360em;
    --xxx-small: 0.485em;
    --xx-small: 0.610em;
    --x-small: 0.735em;
    --small: 0.985em;
    --reg-size: 1.235em;
    --large: 1.485em;
    --x-large: 1.735em;
    --xx-large: 1.985em;
    --xxx-large: 2.985em;
    --x4-large: 3.985em;
    --x5-large: 4.985em;
    --x6-large: 5.985em;
    --x7-large: 7.985em;
    --x8-large: 10.235em;
    --x9-large: 15.985em;
    --x10-large: 20.485em;
    --wide: 0.110em;
  }
}

a {
    color: var(--color-accent-blue);
    text-decoration: none;
}

/* a:hover {
    color:#00A0C6; 
    text-decoration:none; 
    cursor:pointer;  
} */

/* 
  accent-green: #0F9848
  accent-green-variant-1: #418E3E
  accent-green-variant-2: #5EA87D
  accent-green-variant-3: #BFE2C9
  accent-blue: #0E9848
  accent-blue-variant-1: #3A72B5
  accent-blue-variant-2: #1B3A5F
  accent-pink: #FF9797
  accent-pink-variant-1: #EA9999
  accent-pink-variant-2: #EECDCD
  accent-pink-variant-3: #F9E6CF
  
  alert: #E95F59
  selected-blue: #DBF4FF
  light: #FFFFFF
  light-bg: #F8F8F8
  dark: #333333
  unselected: #989898
*/


html {
  display: flex;
  font-family: var(--default-font);
  font-size: var(--reg-size);
  font-weight: 400;
  font-style: normal;
  color: var(--color-dark);
  position: relative;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

form {
  all: unset;
}

textarea {
  all: unset;
}

button {
  box-sizing: border-box;
}

p {
  padding: 0;
  margin: 0;
}

input::placeholder {
  color: var(--color-unselected);
}

html {
  position: relative;
  min-height: 100%;
}

body {
  display: flex;
  height: 100vh;
  width: 100%;
  padding: 0;
  margin: 0;
}

/* Sign In Page */

.sign-in-root,
.info-page-error {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  
  
  /* max-height: 100vh;
  max-width: 100vw; */
}

.info-page-error-button {
  display: flex;
  flex-direction: column;
  
  justify-content: center;
  align-items: center;

  border-radius: 0.5em;
  padding: 1em 4em 1em 4em;
}

.sign-in-portal-surface{
  display: flex;
  /* align-self: stretch; */
  /* padding-top: 10vh;
  padding-bottom: 5vh; */
  width: 55%;
  height: 100%;
  margin-top: 5vh;
  margin-bottom: 5vh;

  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  
  border-radius: 0.5em;
  border: 2px solid var(--color-accent-blue);
}

.form-segment {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  /* align-self: stretch; */

  width: 40%;

  gap: 2vh;
}

.sign-in-img-container {
  display: flex;
  max-height: 5vh;
}

.site-details-block {
  align-items: center;
  justify-content: center;
  gap: 1em;
}

.sign-in-greetings {
  display: flex;
  align-self: stretch;
  text-align: left;

  margin-bottom: 0.5em;
}

#toAccountRecovery {
  /* margin-top: -0.5em; */
  /* display: flex;
  width: 100%;
  text-align: center; */
}

.sign-in-error-block {
  display: flex;
  align-self: stretch;
  align-items: center;
  justify-content: center;
  padding: 0.75em;

  border-radius: 0.25em;
  border: 1px solid var(--color-alert);
  background-color: var(--color-alert-light);
}

.validation-message {
  margin-top: -0.75vh;
  color: var(--color-alert);
  font-size: var(--x-small);
}

/* auth */

.logo-container {
  display: flex;
  max-height: 12.5vh;
  max-width: 10vw;
}

.logo-container-sidebar {
  display: flex;
  max-height: 7.5vh;
}

.logo-block {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  justify-content: center;
  align-items: center;
  /* max-height: 15vh; */
}

/* --------------------------- Dashboard --------------------------- */

.dashboard-body{
  display: flex;
  position: relative;
}

.dashboard-content {
  display: flex;
  position: relative;
  flex-direction: column; 
  width: 100%;
  height: 100%;
  z-index: 0;

  overflow-y: auto;
  
  flex-grow: 0;
}

.dashboard-content-body {
  display: flex;
  position: relative;
  flex-direction: column; 
  max-width: 100%;
  /* min-height: 100%; */

  flex: 1 0 auto;

  
  
  padding: 2.5vh 2.5vh 2.5vh 2.5vh;
}


/* Dashboard-Sidebar */

.dashboard-sidebar {
  display: flex;
  flex-direction: column;

  justify-content: space-between;
  
  width: 12.5vw;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 2vh;
  opacity: 1;
  
  /* margin-left: -17.5vw; */
  /* background-color: var(--color-accent-green-variant-2); */
  transform: translate(0, 0%);
  transition-property: opacity, width, transform, padding;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(.44,.62,.06,.99);
}

.dashboard-sidebar-closed {
  all: unset;  
  position: sticky;
  /* margin-left: -100%; */
  /* left: -17.5vw; */
  /* transform: translate(-100%, 0%); */
  display: flex;
  flex-direction: column;
  justify-content: space-between;


  /* padding: 0em; */
  opacity: 0;
  position: relative;
  z-index: -1;
  width: 0vw; 
  padding: 2em 0 2em 0;
  transition-property: opacity, width, padding;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(.44,.62,.06,.99);
}

.dashboard-sidebar-close-icon {
  display: none;
  position: absolute;
  top: 1em;
  right: 1em;
}

.sidebar-top-section {
  display: flex;
  align-self: stretch;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 5vh;
}


.sidebar-settings-container, .tabs-block {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  justify-content: center;
  align-items: center;
  padding: 1em;
  gap: 0.5em;
  border-radius: 1vh;
}

.tabs-block {
  gap: 1em;
}

.settings-row {
  display: flex;
  align-self: stretch;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1em;
}

.settings-row p,
.settings-row span {
  transition: color 250ms ease-in-out;
}

.profile-row {
  display: flex;
  align-self: stretch;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;

  margin-bottom: 0.5em;
  gap: 0.5em;
}

.profile-pic-container {
  display: flex;
  min-height: 2em;
  min-width: 2em;
  max-height: 2em;
  max-width: 2em;
  padding: 0.5em;
  border-radius: 50%;

  justify-content: center;
  align-items: center;
  /* background-color: var(--color-accent-green); */
}

.tabs-block {
  display: flex;
}

/* Dashboard-Navbar */

.dashboard-navbar{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 2vh;
  
  /* max-height: 12.5vh; */
  position: sticky;
  top: 0;
  z-index: 1;
  

  /* background-color: var(--color-accent-green); */
}

/* Charts Page */
.dashboard-charts-page {
  display: flex;
  flex-direction: column;

  flex: 1 0 auto;
  align-self: stretch;
  border-radius: 0.5em;
  padding: 1.5em;

  gap: 2em;
}

/* Dashboard-Table-Pages */
.table-page-parent {
  all: inherit;
  gap: 2em;
  padding-bottom: 1em;
  margin: 2.5vh 0 2.5vh 0;
}

.table-page-header,
.charts-page-header {
  display: flex;
  position: relative;
  flex-direction: row;
  align-self: stretch;
  justify-content: space-between;
  align-items: center;
}

.charts-page-body {
  /* display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 1em;
  row-gap: 1em; */

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(37vh, 1fr));
  /* grid-template-columns: repeat(4, 1fr); */
  /* gap: 1rem; */
  column-gap: 1em;
  row-gap: 1em;
}

.charts-page-body-3col {
  /* display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 1em;
  row-gap: 1em; */

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40vh, 1fr));
  /* grid-template-columns: repeat(4, 1fr); */
  /* gap: 1rem; */
  column-gap: 1em;
  row-gap: 1em;
}

.charts-pending-section, .charts-properties-section {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: stretch;
  align-self: stretch;
  
  /* max-height: 40vh; */

  gap: 1em;
}

.charts-filter-section {
  display: flex;
  position: relative;
  flex-direction: column;
  flex: 1 0 auto;
  align-items: center;
  justify-content: center;
  align-self: stretch;

  gap: 1em;
}

.charts-top-header-block {
  display: flex;
  flex-direction: row;
  align-self: stretch;
  align-items: center;
  gap: 1em;
}

.charts-top-header-button,
.charts-top-export-button {
  display: flex;
  flex-direction: row;
  padding: 0.25em 1em 0.25em 1em;
  border-radius: 0.25em;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
}

.charts-top-export-button {
  padding: 0.5em 2em 0.5em 2em;
}

.charts-properties-section {
  /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(60vh, 1fr)); */
  /* gap: 1rem; */
  /* column-gap: 1em;
  row-gap: 1em; */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70vh, 1fr));
  column-gap: 1em;
  row-gap: 1em;

  /* This ensures all items in a row match the tallest item */
  /* align-items: stretch; */
  /* grid-auto-rows: 1fr; */
}

.table-page-date-section{
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

  gap: 0.5em;
}

.table-page-tabs-container{
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  align-self: stretch;

  border-bottom: 1px solid var(--color-unselected);
}

.table-page-tab{
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
  padding: 1em;
}

.table-tab-row-btn {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 0.5em;
  max-width: 60%;
  min-width: 5em;
  
  border-radius: 0.25em;
}

.table-tab-row-status {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 0.5em;
  align-self: stretch;
  border-radius: 0.25em;
}

/* .daterangepicker {
  display: flex;
  position: relative;
  flex-direction: row;
  max-width: 10vw;
  padding: 1em;
} */


.notif-button{
  display: flex;
  position: relative;
  padding: 0.5em;
  border-radius: 0.5em;

  background-color: var(--color-light);
}

.notif-button .notif-alert-circle {
  display: flex;
  position: absolute;
  min-height: 0.4em;
  min-width: 0.4em;
  right: 0.6em;
  top: 0.6em;
  border-radius: 50%;
  background-color: var(--color-alert);
  border: 2px solid var(--color-light);
}

/* inquiry info */
.info-page {
  all: inherit;
  flex-direction: row;
  gap: 1em;
  padding: 0;
  margin: 0 1em 0 1em;
}

.info-side-content {
  display: flex;
  position: relative;
  flex-direction: column;
  flex: 1 0 auto;
  max-width: 20%;
  
  padding: 0 0 0 0;
  gap: 1em;
}

.lease-info-action-buttons {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 1em;
}

.info-main-content{
  display: flex;
  position: relative;
  flex-direction: column;
  flex: 1 0 auto;
  max-width: 80%;

  gap: 1em;

  justify-content: flex-start;

}

.info-main-content-header {
  display: flex;
  position: relative;
  flex-direction: row;
  max-width: 100%;
  align-items: flex-start;
  justify-content: space-between;

  padding: 0.75em 1.5em;

  border-radius: 0.5em;
}

.info-main-content-header-right, 
.info-main-content-header-left {
  display: flex;
  position: relative;
  flex-direction: row;
  padding: 0;
  gap: 2em;
  min-width: 50%;
  align-items: flex-start;
}

.info-main-content-header-left {
  flex-wrap: wrap;
  justify-content: flex-start;
}

.info-main-content-header-right {
  justify-content: flex-end;
}

.info-header-block {
  display: flex;
  position: relative;
  flex-direction: column;

  gap: 0.1em
}

.info-close-inquiry-btn,
.info-close-page-btn,
.resend-email-btn {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
  border-radius: 0.5em;

  padding: 1em;
}

.info-close-page-btn {
  max-height: fit-content;
}

.resend-email-btn {
  flex-direction: row;
  gap: 1.5em;
  /* justify-content: space-between; */
  transition: gap 500ms ease-in-out;
}

.resend-email-btn:hover {
  gap: 3em;
}

.info-close-page-btn{
  padding: 0.5em 1em 0.5em 1em;
  margin: 0.5em;
}

.info-extra-details {
  display: flex;
  position: relative;
  flex-direction: column;
  align-self: stretch;
  flex: 1 0 auto;

  gap: 0.5em;

  border-radius: 0.5em;

  padding: 1.5em;
}

.info-extra-details-block{
  display: flex;
  position: relative;
  flex-direction: column;
  align-self: stretch;
  align-items: flex-start;

  gap: 0.25em;
} 

.info-main-details {
  display: flex;
  flex-direction: column;
  flex: 1 0 0;
  padding: 1.5em;
  align-self: stretch;

  gap: 2.5vh;

  border-radius: 0.5em;
  line-height: 1.25em;
}

.lease-details-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 2.5em;
  column-gap: 2.5em;
}

.lease-details-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;

  gap: 0.5em;
  margin-right: auto;

  min-width: 30%;
  max-width: 30%;
}

.details-block-attachments {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1 0 0;

  gap: 0.5em;
}

.lease-details-block-row {
  display: flex;
  flex-direction: row;
  /* flex-wrap: wrap; */
  column-gap: 0.5em;
  row-gap: 0.5em;

  max-height: 10em;
  min-width: 30%;

  /* align-items: flex-start; */
  justify-content: flex-start;
}

/* data table */
table.dataTable {
    border-collapse: separate !important;
    border-radius: 0.5em !important;
    background-color: var(--color-light) !important;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important;

    padding: 1em !important;

    border-spacing: 0 0.5em !important;
}

table.dataTable tbody tr {
    border-bottom: none !important;
    padding: 1em 0 1em 0;
    /* background-color: var(--color-unselected) !important; */

    font-weight: 500;
}

/* Optional: remove cell borders too, if present */
table.dataTable tbody td {
    border: none !important;
    padding: 1em 0 1em 0;
}

table.dataTable tbody {
    border: none !important;
}

/* ALSO remove top border from the first row of body, just in case */
table.dataTable tbody tr:first-child td {
    border-top: none !important;
}

/* Header styling */
table.dataTable thead th {
    background-color: none !important;
    border-bottom: none !important;
    padding: 1em 0 1em 0;

    color: var(--color-accent-blue);
}

/* Row hover */
table.dataTable tbody tr:nth-child(even):hover,
table.dataTable tbody tr:nth-child(odd):hover{
    background-color: var(--color-accent-blue-variant-3) !important;

    overflow: hidden !important;
}

/* border radius of each row */
table.dataTable tbody tr td:first-child {
    border-top-left-radius: 0.25em;
    border-bottom-left-radius: 0.25em;
}

table.dataTable tbody tr td:last-child {
    border-top-right-radius: 0.25em;
    border-bottom-right-radius: 0.25em;
}

/* controls */

.dataTables_filter {
  margin-bottom: 1.5em;
}

.data-table-search-input {
  max-width: 15em;
}

/* .dataTables_wrapper .dataTables_filter input {
  all: 
} */

.dataTables_length {
    margin-top: 1.5em;
}

.dataTables_length label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dataTables_length select {
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #0F9848;
}

/* pagination */
.dataTables_paginate .paginate_button{
    all: unset;
    background-color: transparent !important;
    border: none;
    /* border: 1px solid #ccc;
    padding: 5px 10px;
    margin: 0 2px;
    border-radius: 4px;
    cursor: pointer; */
    cursor: pointer;
    color: var(--color-dark);
    transition: all 0.2s ease;
}

.dataTables_paginate .paginate_button:hover {
    all: unset;
    /* background: #007bff;
    color: white;
    border-color: #007bff; */
    color: var(--color-accent-blue) !important;
}

.dataTables_paginate .paginate_button .current {
    all: unset;
    background: transparent !important;
    background-color: transparent !important;
    color: var(--color-accent-blue) !important;
    border: none !important;
}

/* table.dataTable tbody tr:nth-child(even),
table.dataTable tbody tr:nth-child(odd) {
    background-color: transparent !important;
} */



/* Zebra striping */
table.dataTable tbody tr:nth-child(even) {
    background-color: var(--color-light-bg);
    border-radius: 0.5em;
}

/* table.dataTable tbody tr:nth-child(even) {
    background-color: var(--color-light-bg);
    border-radius: 0.5em;
}

table.dataTable tbody tr:nth-child(odd) {
    border-radius: 0.5em;
    background-color: var(--color-accent-blue-variant-3);
} */


/* Pagination buttons */
/* .dataTables_paginate .paginate_button {
    background-color: #eee;
    border: 1px solid #ccc;
    padding: 5px 10px;
    margin: 0 2px;
    cursor: pointer;
} */

/* .dataTables_paginate .paginate_button.current {
    background-color: #007bff;
    color: white;
    border: 1px solid #007bff;
} */

/* Search box */
/* .dataTables_filter input {
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 4px;
} */

/* Length dropdown */
/* .dataTables_length select {
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #ccc;
} */

/* Info text */
/* .dataTables_info {
    font-style: italic;
    color: #666;
} */


@media (max-width: 1366px) {
  /* .dashboard-sidebar {
    width: 17.5vw;
  }

  .dashboard-sidebar-closed { 

    width: 0vw; 
  } */
}

@media (max-width: 1220px) {
  .sign-in-portal-surface{
    /* align-self: stretch; */
    padding-top: 10vh;
    padding-bottom: 5vh;
    width: 80%;
  }

  .info-page {
    flex-direction: column-reverse;
  }

  .info-side-content {
    /* display: flex;
    position: relative;
    flex-direction: column;
    flex: 1 0 auto; */
    max-width: 100%;
    flex-direction: column-reverse;
    
    /* padding: 0.5em 0 0 0;
    gap: 1em; */
  }

  .lease-info-action-buttons {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    gap: 1em;
  }

  .info-main-content{
    /* display: flex;
    position: relative;
    flex-direction: column;
    flex: 1 0 auto; */
    max-width: 100%;

    /* gap: 1em;

    justify-content: flex-start; */
  }
}

@media (max-width: 1000px) {
  
}

@media (max-width: 768px) {
  .sign-in-portal-surface{
    /* align-self: stretch; */
    padding-top: 10vh;
    padding-bottom: 5vh;
    width: calc(100% - 2em);
    height: calc(100% - 2em);
    box-sizing: border-box;
    margin-top: 0;
    margin-bottom: 0;
  }

  .dashboard-sidebar-close-icon{
    display: flex;
  }

  .lease-details-block {
    min-width: 100%;
  }
  
  .info-main-content-header-left {
    row-gap: 0.5em;
  }

  .info-main-content-header {

  }

  .info-close-page-btn {
    /* position: fixed; */
    /* top: 5em;
    left: 1em; */
    flex-direction: row;
    margin: 0;
    align-self: stretch;
    padding: 0.75em;
    /* z-index: 99999; */
    gap: 0.5em;
    /* opacity: 0.7; */
  }

  .info-page {
    margin: 0;
  }

  .form-segment {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    /* align-self: stretch; */

    width: calc(100% - 4em);

    gap: 2vh;
  }

  .sign-in-greetings {
    align-self: center;
    text-align: center;
  }

  .dashboard-sidebar {
    position: absolute;
    width: 90vw;
    height: 100%;
  }

  /* .dashboard-sidebar-closed { 

    width: 0vw; 
  } */
}