@charset "utf-8";
/* CSS Document */

/* Basic reset for body */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f9;
    margin: 0;
}

/* Center the custom password dialog */
.password-dialog {
    font-family: 'LinguisticsPro', sans-serif;
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: var(--lg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
/*    border-radius: 10px;*/
    text-align: center;
    width: 400px;
    z-index: 999; /* Set z-index for password dialog below the message box */
}

.password-dialog h2, .message-dialog h2 {
/*    font-family: 'LinguisticsPro', sans-serif;*/
/*    color: #7d7d7d;*/
    font-size: 18px;
    color: var(--dg);
}

.password-dialog input {
    padding: 10px;
    font-size: 16px;
    margin: 10px 0;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.password-dialog button {
/*    background-color: #7d7d7d;*/
    background-color: var(--mg); 
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    margin-top: 10px;
}

.password-dialog button:hover {
/*    background-color: #5e5e5e; */
    background-color: var(--mg); 
}

/* Access Denied Message Box */
.message-dialog {
    font-family: 'LinguisticsPro', sans-serif; 
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: var(--lg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
/*    border-radius: 10px;*/
    text-align: center;
    width: 400px;
    z-index: 1000; 
}


.message-dialog p {
    margin: 10px 0;
/*    color: #555;*/
    color: var(--mg);
}

.message-dialog button {
/*    background-color: #7d7d7d;*/
    background-color: var(--mg);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.message-dialog button:hover {
/*    background-color: #5e5e5e; */
    background-color: var(--mg); 
}

.custom-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998; /* Set overlay below the message box */
}

.footerOverlay {
/*	border: 1px solid yellow;*/
  border: none;
  z-index: 1;  
  bottom: 0;
  position: absolute;
/*  position: fixed;*/
  height: 50px;
/*	max-width: var(--width);*/
	margin:0 auto;
	width: 100%;
  background-color: white;
  }