:root {
	--cyth-bg-image: url("boot/etf/2.jpg");
  --cyth-bg-color: black;
  --cyth-bg-repeat: no-repeat;
  --cyth-bg-size: cover;
  --cyth-bg-position: center;
  --cyth-text-color: white;
  --cyth-hidden-text-color: transparent;
  --cyth-welcome-message: "Welcome to Cyth Corp.";
  --cyth-bg-fade-duration: 0.15s;
}

.theme-dark {
  --cyth-bg-image: url("background.png");
  --cyth-bg-color: black;
  --cyth-bg-repeat: no-repeat;
  --cyth-bg-size: cover;
  --cyth-bg-position: center;
  --cyth-text-color: white;
  --cyth-hidden-text-color: transparent;
  --cyth-welcome-message: "Welcome to Cyth Corp.";
  --cyth-bg-fade-duration: 0.15s;
}

.theme-light {
  --cyth-bg-image: url("image.png");
  --cyth-bg-color: black;
  --cyth-bg-repeat: no-repeat;
  --cyth-bg-size: cover;
  --cyth-bg-position: center;
  --cyth-text-color: white;
  --cyth-hidden-text-color: transparent;
  --cyth-welcome-message: "Welcome to Cyth Corp.";
  --cyth-bg-fade-duration: 0.15s;
}

html {
  background-color: var(--cyth-bg-color);
  color: var(--cyth-text-color);
  min-height: 100%;
}

html::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--cyth-bg-image);
  background-repeat: var(--cyth-bg-repeat);
  background-size: var(--cyth-bg-size);
  background-position: var(--cyth-bg-position);
  opacity: 0;
  animation: cythFadeIn var(--cyth-bg-fade-duration) ease-in forwards;
  z-index: -1;
}

@keyframes cythFadeIn {
  to {
    opacity: 1;
  }
}

body {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  font-family: Arial, sans-serif;
  height: 100vh;
  padding: 20px;
}

main {
  flex: 1 1 0;
  padding: 20px;
  min-width: 300px;
}

aside {
  width: 950px;
  padding: 20px;
}

@media (max-width: 1350px) {
  body {
    flex-direction: column;
    height: auto;
  }
  main,
  aside {
    width: 100%;
    min-width: auto;
  }
  aside {
    order: 2;
  }
  main {
    order: 1;
  }
}

.status-container {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-top: 2em;
  margin-bottom: 1em;
}

.status-container img[profile][pic] {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  margin: 0;
}

#status {
  margin: 0;
  font-size: 1.75em;
  font-weight: 900;
  color: var(--cyth-text-color, white);
}

#dateInfo {
  margin: 0 0 1.5em 0;
  font-size: 1rem;
  color: var(--cyth-text-color);
}

.app-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem; 
}

.app-grid .object {
  flex: 0 0 auto; 
  min-width: 145px;
  min-height: 35px;
  background: rgba(255 255 255 / 0.9);
  padding: 1em;
  font-size: 1.05em;
  font-family: Brush Script MT, Terminal, Tahoma,Helvetica;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease;
  display: flex;  
  align-items: center;
  justify-content: center; 
  border: none;
  text-align: center; 
}

.app-grid .object:hover {
  background: rgb(131 129 129);
}

.login img {
  margin: 0 auto;
  height: 125px !important;
  width: 125px !important;
  border-radius: 50%;
  object-fit: cover;
}

.login {
  width: 450px;
  background: transparent;
  backdrop-filter: blur(75px);
  color: var(--cyth-text-color);
  position: fixed;
  left: 5%;
  right: 50%;
  padding: 1.75em;
  font-family: sans-serif;
  border: 5px solid transparent;
}

.login i#not-you-link {
  color: #e9ade2;
  cursor: pointer;
  text-decoration: underline;
  margin-left: 0.5em;
  font-style: normal;
}

.login input#password-input {
  width: 100%;
  padding: 10px 0.55em;
  background: none;
  border: none;
  color: var(--cyth-text-color);
  outline: 2px solid transparent;
  font-size: 1em;
  margin-top: 1em;
  box-sizing: border-box;
}

footer {
  position: fixed !important;
  bottom: 0 !important;
  right: 0 !important;
  margin-right: 25px;
  margin-bottom: 10px;
  z-index: 9999999999 !important;
}