@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;700&display=swap");
:root {
  --max-width: 1100px;
  --sidebar-width: 55px;
}
/* :root {
  --max-width: 1100px;
  --sidebar-width: 55px;

  --header-height: 50px;
  --border-radius: 12px;
  --font-mono: ui-monospace, Menlo, Monaco, "Cascadia Mono", "Segoe UI Mono",
    "Roboto Mono", "Oxygen Mono", "Ubuntu Monospace", "Source Code Pro",
    "Fira Mono", "Droid Sans Mono", "Courier New", monospace;

  --foreground-rgb: 0, 0, 0;

  --background-start-rgb: 214, 219, 220;
  --background-end-rgb: 255, 255, 255;

  --primary-glow: conic-gradient(from 180deg at 50% 50%,
      #16abff33 0deg,
      #0885ff33 55deg,
      #54d6ff33 120deg,
      #0071ff33 160deg,
      transparent 360deg);
  --secondary-glow: radial-gradient(rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 0));

  --tile-start-rgb: 239, 245, 249;
  --tile-end-rgb: 228, 232, 233;
  --tile-border: conic-gradient(#00000080,
      #00000040,
      #00000030,
      #00000020,
      #00000010,
      #00000010,
      #00000080);

  --callout-rgb: 238, 240, 241;
  --callout-border-rgb: 172, 175, 176;
  --card-rgb: 180, 185, 188;
  --card-border-rgb: 131, 134, 135;
}

@media (prefers-color-scheme: dark) {
  :root {
    --foreground-rgb: 255, 255, 255;
    --background-start-rgb: 0, 0, 0;
    --background-end-rgb: 0, 0, 0;

    --primary-glow: radial-gradient(rgba(1, 65, 255, 0.4), rgba(1, 65, 255, 0));
    --secondary-glow: linear-gradient(to bottom right,
        rgba(1, 65, 255, 0),
        rgba(1, 65, 255, 0),
        rgba(1, 65, 255, 0.3));

    --tile-start-rgb: 2, 13, 46;
    --tile-end-rgb: 2, 5, 19;
    --tile-border: conic-gradient(#ffffff80,
        #ffffff40,
        #ffffff30,
        #ffffff20,
        #ffffff10,
        #ffffff10,
        #ffffff80);

    --callout-rgb: 20, 20, 20;
    --callout-border-rgb: 108, 108, 108;
    --card-rgb: 100, 100, 100;
    --card-border-rgb: 200, 200, 200;
  }
} */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body,
html {
  font-family: Arial, sans-serif;
}

body {
  /* color: rgb(var(--foreground-rgb));
  background: linear-gradient(to bottom,
      transparent,
      rgb(var(--background-end-rgb))) rgb(var(--background-start-rgb)); */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: black;
}

.header-strip {
  height: var(--sidebar-width);
  display: flex;
  /* justify-content: space-between; */
  background-color: rgb(50, 100, 225);
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgb(210, 225, 255);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1400;
}

.header-strip-icons {
  display: flex;
  background-color: rgb(50, 100, 225);
  border-bottom: 1px solid rgb(210, 225, 255);
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
}

.header-strip-icons-closed{
  display: flex;
  background-color: rgb(50, 100, 225);
}

.companyLogoHeadingSection {
  display: flex;
}

/* Fade-in animation for the greeting message */
.greetingMessage {
  margin-left: 10px;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-style: italic;
  font-weight: normal;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  
  /* Apply fade-in animation */
  animation: fadeIn 1.5s ease-in-out forwards;
}

/* Keyframes for fade-in effect */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(-100%);
  }
}

.companyLogo {
  width: 35px;
  height: 35px;
  top: 0;
  background-image: url("../images/company-logo.png");
  background-size: cover;
  background-position: center;
  margin: 10px;
  z-index: 1;
}

.companyLogoExtended {
  width: 75px;
  height: 35px;
  top: 0;
  background-image: url("../images/company-logo-extended.png");
  background-size: cover;
  background-position: center;
  margin: 10px;
  z-index: 1;
}

.logoutButton i {
  font-size: 12px;
}

.main-container {
  display: flex;
  flex: 1;
  width: 100%;
  background-color: whitesmoke;
}

.sub-container {
  background-color: white;
  display: flex;
  width: 100%;
}

.sidebar {
  z-index: 2000;
  flex-shrink: 0;
  border-right: 1px solid rgba(50, 100, 225, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  min-width: 160px;
  background-color: rgb(240, 243, 253);
  z-index: 1300;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.sidebar.open {
  /* Styles for an expanded (formerly "open") sidebar */
  transform: translateX(0);
}

.sidebar.closed {
  /* Styles for a collapsed (formerly "closed") sidebar */
  transform: translateX(-100%);
}


.sidebar-top-margin {
  height: var(--sidebar-width);
}

.sidebar-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-top: 5px;
}

.sidebar-footer {
  margin-top: auto;
  padding: 10px;
  text-align: center;
  background: #f4f4f4;
  font-size: 13px;
  color: #555;
  border-top: 1px solid #ddd;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1250;
  transition: opacity 0.3s ease;
}

#open-side-bar {
  background-color: rgb(50, 100, 225);
}

.sidebar button {
  height: var(--sidebar-width);
  position: relative;
  width: 90%;
  margin: 3px auto;
  padding: 0px 15px;
  border-radius: 10px;
  color: rgb(50, 100, 225);
  cursor: pointer;
  font-size: 11px;
  font-style: italic;
  box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.15);
  text-shadow: 2px 2px 2px 8px rgba(0, 0, 0, 0.2);
  color: #555;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  border: 1px solid rgb(185, 185, 187);
  background: none;
  text-align: left;
  cursor: pointer;
}

.sidebar button.active-button {
  color: white;
  background: rgb(50, 100, 225);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.sidebar button.active-button:hover {
  color: white;
  background: rgb(50, 100, 225);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

@media (prefers-color-scheme: dark) {
  html {
    color-scheme: dark;
  }
}

.sidebar button:hover {
  background: rgb(229, 229, 229);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

#logoutButton .sidebar button:hover {
  background-color: #555;
  color: white;
}

.sidebar i {
  font-size: 16px;
  display: block;
  transition: opacity 0.3s ease;
}


.sidebar button:hover .icon-info {
  visibility: visible;
  opacity: 1;
}

.icon-info {
  font-size: 14px;
  margin-left: 10px;
}

.icon-info-logout {
  font-size: 12px;
  margin-left: 10px;
}

i {
  margin: 0px 4px;
}

.content-area {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  margin-top: var(--sidebar-width);
  /* background-color: rgba(240, 234, 214, 0.4); */
  background-color: rgb(240, 243, 253);
  /*Eggshell color*/
}

.account-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px 0;
  cursor: pointer;
  color: rgb(50, 100, 225);
}

/* Style for the "admin" text below the account icon */
.account-link span {
  font-size: 11px;
  margin-top: 4px;
}

.footer-strip {
  background-color: rgb(210, 225, 255);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(50, 100, 225, 0.4);
  color: black;
  padding: 15px;
  display: flex;
  font-size: 12px;
  left: 0;
  bottom: 0;
  width: 100%;
}

.footer-tags {
  padding: 0 10px;
}

.footer-tags a {
  padding: 0 5px;
  color: rgba(50, 100, 225, 0.8);
}

.icon-separator {
  width: 1px;
  height: 100%;
  background-color: rgb(210, 225, 255);
  margin: 0px; 
}

.footer-company {
  padding-top: 10px;
}