/* Splash Screen CSS */
#splash-screen {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.splash-content {
  text-align: center;
}

.logo {
  width: 100px;
  animation: fadeIn 2s ease-in-out;
}

.loader {
  margin-top: 20px;
  border: 4px solid #eee;
  border-top: 4px solid #ff0000;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
