body {
  background-image: url('../background.png'); /* Replace with the actual path to your image */
  background-size: cover; /* Scales the image to cover the entire container */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  background-position: center center; /* Centers the image horizontally and vertically */
  background-attachment: fixed; /* Keeps the background fixed during scrolling */
}

.tile {
    opacity: 1.00;
    background: white;
    border-radius: 10px;
    display: flex;
    width: 85px;
    height: 85px;
    margin: 10px;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    border: 4px;
    border-color: white;
    cursor: pointer;
    -webkit-box-shadow: 0 0 10px #DCDCDC;
        box-shadow: 0 0 10px #DCDCDC;
}

.tile:hover {
    -webkit-box-shadow: 0 0 20px black;
        box-shadow: 0 0 20px black;
}

.label {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  display: block;
  width: 80px;
  height: 50px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.userbar {
    z-index: 2;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    helght: 50px;
    border: 0px;
    padding: 0px;
    background-image: linear-gradient(to right, #ff9655, #f2dcce);
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
}

.logout {
    background-color: transparent;
    float: right;
    padding-left: 10px;
    padding-right: 10px;
    cursor: pointer;
    border-radius: 1px;
    height: 20px;
    color: black;
    padding-top: 2px;
    font-size: 15px;
}

.hidden {
    display: none;
}

.disabled {
  position: absolute; /* Position the text within the container */
  transform: rotate(45deg); /* Rotate the text by 45 degrees */
  top: 30px;
  left: revert;
  color: white;
  padding: 0px;
  background-color: red;
  width: 85px;
}

.backdrop {
    opacity: 1;
    z-index: 1;
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100vh;
    width: 100%;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.desktop {
    z-index: 2;
    position: relative;
    left: 0px;
    top: 20px;
}

.style_select {
    padding-top: 0px;
    float: right;
    height: 20px;
    color: black;
    font-size: 15px;
}

.last_login {
     margin-left: 50px;
}

.login_text {
    width: 200px;
    spacing: 0px;
    padding: 0px;
}

.loginlogo {
    width: 100px;
    height: 100px;
}

.logout_button {
    position: relative;
    top: 10px;
    width: 75px;
    height: 75px;
}

.app_icon {
    height: 60px;
    width: 60px;
}

.saml_link {
    color: white;
    font-size: 25px;
}

.saml_link:hover {
    color: #1fe043;
}

.legal_text {
    font-size: 10px;
}

.clock {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 250px;
    height: 100vh;
    z-index: 10;
    background: #f2f2f2;
    border-radius: 25px;
    background-color: black;
    -webkit-box-shadow: 0 0 10px #DCDCDC;
        box-shadow: 0 0 10px #DCDCDC;
}

.new_logout {
    cursor: pointer;
    padding: 10px;
    border: 1px solid black;
    z-index: 3;
    position: fixed;
    top: 0;
    right: 0;
    height 100px;
    -webkit-box-shadow: 0 0 10px #DCDCDC;
     box-shadow: 0 0 10px #DCDCDC;
     background-color: rgba(255, 255, 255, 0.4); /* Required: semi-transparent background */
    backdrop-filter: blur(10px);                  /* The blur effect */
    -webkit-backdrop-filter: blur(10px);         /* Essential for Safari support */
}

a {
  text-decoration: none !important; /* Removes default underline */
}

a:hover {
    text-decoration: underline !important;
}