html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif; /* Adjust font family as needed */
    background-color: ##eeffff; /* Adjust background color as needed */
}

/* Main container */
.container {
    width: 90%; /* Adjust width as needed */
    margin: 0 auto;
    padding: 20px;
    background-color: ##eeffff; /* Adjust background color as needed */
}

/* Content area */
.content {
    background-color: ##eeffff;
    padding: 20px;
}

/* Footer */
footer {
    background-color: ##eeffff;
    padding: 20px;
    text-align: center;
}

h1, h2, h3, h4, h5, h6 {
  color: #008afc; /* Set your desired color here */
}

#welcome-screen, #loading-screen, #screen {
    width: 100%;
    height: 100%;
    display: none;
    background-color: #eeffff;
}
#welcome-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#loading-screen {
    text-align: center;
}

#progress-bar {
    width: 80%;
    height: 30px;
    background-color: #e1eeee;
    border: 1px solid #ccc;
    border-radius: 15px;
    margin: 20px auto;
}

#progress-bar-inner {
    width: 0;
    height: 100%;
    background-color: #4caf50;
    border-radius: 15px;
}

/* Error message */
.error {
  color: red;
  font-weight: bold;
}

strong {
    color: #356823
}

img {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4); /* Subtle shadow for depth */
}

.button {
  background-color: #e1eeee; /* Light grey background */
  border: 1px solid #D0D0D0; /* Light grey border */
  border-radius: 5px;
  color: #356823;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

.button:hover {
  background-color: #e6cb63; /* Adjust the color to your preference */
  border: none;
  border-radius: 5px;
  color: #356823;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}
