/* General Styles */
body {
    background-color: rgb(64, 64, 64); /* Grey background */
    color: rgb(64, 64, 64); /* Dark grey text */
    font-family: Helvetica, Arial, sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height for centralization */
    overflow: hidden; /* Prevent any scrolling */
}

input {
    background-color: white; /* White background */
    color: rgb(64, 64, 64); /* Dark grey text */
    border: 1px solid rgb(200, 180, 73); /* Yellow border */
    padding: 10px;
    border-radius: 10px; /* Rounded corners */
    width: 100%;
    max-width: 200px;
  }

.centered-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    padding-top: 50px;       /* Add space at the top */
    height: 100vh; /* Full viewport height to center vertically */
    margin: 0; /* Remove default margin */
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
}

.content-box {
    background-color: white; /* White background for the div */
    padding: 30px;
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: center; /* Center align the content */
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: center; /* Center elements vertically within the content box */
    align-items: center;
    max-width: 400px;
    width: 90%;
}


.image-field {
    margin-bottom: 20px;
    text-align: center;
}

.image-field img {
    display: block;
    margin: 0 auto;
}

.button-container {
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px; /* Space between buttons */
    width: 100%;
    justify-content: center;
}

button {
    background-color: rgb(200, 180, 73); /* Yellow button background */
    color: rgb(64, 64, 64); /* Dark grey text */
    border: none;
    padding: 12px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 10px; /* Rounded corners */
    margin: 5px 0;
    width: 100%;
    box-sizing: border-box; /* Ensure padding doesn't affect width */
}

button:hover {
    background-color: white; /* White on hover */
    color: rgb(64, 64, 64); /* Grey text on hover */
    border: 1px solid rgb(200, 180, 73); /* Yellow border */
}

/* Image section */
.image-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* Space between images */
}

/* Images */
.logo1 {
    width: 100px; /* Adjust size as needed */
    height: auto;
}

.logo2 {
    width: 90px; /* Adjust size as needed */
}

/* Main content container visibility */
#mainContent {
    display: flex;
    justify-content: center;
    align-items: center;
}




 /* Banner Styles */
 header.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white; /* White background */
    color: rgb(64, 64, 64); /* Dark grey text */
    padding: 10px 20px;
    position: fixed;
    border-bottom: 2px solid rgb(200, 180, 73); /* Yellow bottom border */
    color: rgb(64, 64, 64); /* Dark grey text */
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for a smooth effect */
    top: 0;
    left: 0;
    width: 97%;
    z-index: 0;
}

  .banner-section {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .banner-section.center {
    flex: 1;
    text-align: center;
  }
  
  .banner-section.left, .banner-section.right {
    flex-shrink: 0; /* Prevent sections from shrinking */
  }
  
  .banner-section.center h1 {
    padding-left:  47%;
    font-size: 1.8em;
    color: rgb(64, 64, 64); /* Dark grey title */
    margin: 0;
  }
  
  .banner-text {
    font-size: 1em;
    color: rgb(64, 64, 64); /* Dark grey text */
  }

  .powered-by {
    font-size: 0.7em;
    color: rgb(64, 64, 64); /* Dark grey text */
  }
  
  .logo {
    height: 40px; /* Logo size */
    width: auto;
  }

  #vbatagline {
    font-size: 0.7em; /* Adjust as needed, e.g., "12px", "80%", etc. */
}




/* Dismiss button – override global button styles */
.version-banner .dismiss-btn {
    width: auto;              /* prevent full-width */
    margin: 0;
    padding: 4px 8px;
    background: none;
    border: none;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    color: rgb(64, 64, 64);
}

.version-banner .dismiss-btn:hover {
    color: black;
    background: none;
    border: none;
}
.version-banner {
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);  /* prevents edge-to-edge */
    max-width: 1200px;         /* keeps it elegant on large screens */
    background-color: rgb(200, 180, 73);
    color: rgb(64, 64, 64);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    font-size: 0.9em;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2;
}
