/* NOTE:
*  Mantine theme variables can be found here:
*  https://mantine.dev/styles/css-variables/
*/


/* CUSTOM VARIABLES */
:root {
  --navbar-height: 85px;
  --color-brand-navy: #1E222C;
  --color-brand-dark-blue: #323849;

}


/* LAYOUT */
.navbar {
  height: var(--navbar-height);
  padding: var(--mantine-spacing-lg);
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-brand-navy);
}

.page-links-container {
  flex-direction: row;
  gap: var(--mantine-spacing-md);
}

.navbar-divider {
  align-self: stretch;
}

.main-content {
  margin-top: var(--navbar-height);
  width: 100%;
  padding: var(--mantine-spacing-lg);
  justify-content: "start";
  align-items: "center";
  flex-direction: column;
}

.filter-bar {
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
  gap: var(--mantine-spacing-lg);
  padding: var(--mantine-spacing-lg);
  padding-top: 0;
  padding-bottom: var(--mantine-spacing-md);
  padding-left: var(--mantine-spacing-md);
  padding-right: var(--mantine-spacing-md);
  flex-wrap: wrap;
}


/* COMPONENTS */

/* TODO: refactor page-link and page-link-active to reduce duplication*/
.page-link {
  width: max-content;
  border-radius: 6%;
  color: white;

  &:hover {
    background-color: var(--color-brand-dark-blue);
  }
}


.page-link-active {
  font-weight: var(--mantine-h6-font-weight);
  width: max-content;
  border-radius: 6%;
  color: white;
}

.page-filter {
  min-width: 210px;
}


/* MISC */
.version-text {
  color: var(--mantine-color-gray-5);
  font-size: var(--mantine-font-size-sm);
}

.inz-logo {
  height: 100%;
 }


.logo {
 height: 100%;
 width: 230px;
}

.logo-link {
  height: 110%;
  padding-left: var(--mantine-spacing-md);
}

.login-content {
  height: calc(100vh - 1.5rem);
  width: 100%;
  background-image: url("qrious-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #09002B;
  overflow-y: hidden;
}
