        body {
            font-family: Arial, sans-serif;
            justify-content: center;
            align-items: center;
            margin: 0;
            background-color: #f0f0f0;
	  margin-top: 0px !important;
        }
        .login-container {
            background-color: white;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            width: 50%;
            margin: 0 auto;
            margin-top: 50px;            
        }
        .login-container h2 {
            text-align: center;
        }
        .login-container input {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 4px;
        }
        .login-container button {
            width: 100%;
            padding: 10px;
            background-color: #4CAF50;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
        .login-container button:hover {
            background-color: #45a049;
        }
        .login-container input {
            width: 100%;
            max-width: unset;
        }

.error {
  color: red;
  text-align: center;
}

a {
  color: #4CAF50;
  text-decoration: none;
}

h1 {
  text-align: center;
}

h2 {    
  text-align: center; 
}       

h3 {
  text-align: center;
}

input {
  width: 90vw;
  max-width: 600px;
}

.align_left {
  display: block;
  text-align: left;
  width: unset !important;
}

.align_left input {
  width: unset;
}

label {
  width: 150px;
  float: left;
  margin-right: 10px;
  text-align: right;
  clear: left;
}

.ckedit {
  margin-left: 5px;
  margin-top: 5px;
  padding-right: 5px;
/*
  margin-left: 155px;
  margin-top: 5px;
  padding-right: 50px;
*/
}

table {
  width: 90%;
  margin: 0 auto;
}

table td {
  background-color: #dddddd;
  text-align: left;
}

table th {
  background-color: #dddddd;
  text-align: left;
}

table.sortable thead { 
  color: #0077bf;
  vertical-align: bottom;
  font-size: 1.1em;
  background-color:#eee;
  cursor: default;
}


.menu_header {
  position: sticky;
  top: 0;
  background-color: #084B8A;
  z-index: 100;
  width: 100%;
  color: white;
  font-size: 1.0em;
  transition: all 0.3s ease;
  display: flex; /* Use Flexbox for the header */
  justify-content: space-between; /* Distributes space between left, center, and right */
  align-items: center; /* Vertically centers content */
  padding: 10px;
  box-sizing: border-box; /* Ensures padding doesn't increase width */
  margin-bottom: 20px;

}

.menu_header .menu_left {
  display: flex; /* Keep Flexbox for internal content */
  gap: 10px; /* Maintains spacing between child elements */
}

.menu_header .menu_center {
  text-align: center;
  flex: 1; /* Allows it to take available space, centering it naturally */
}

.menu_header .menu_right {
  display: flex; /* Keep Flexbox for internal content */
  gap: 10px; /* Maintains spacing between child elements */
}

.center_div {
  display: flex;
  justify-content: center;
}

/* Smaller submit button styling */
.menu_header .menu_right .small-submit {
            padding: 0px 0px; /* Reduced padding for smaller size */
            font-size: 0.8em; /* Smaller font size */
            background-color: #007BFF;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            display: inline-block;
            text-align: center;
        }

.menu_header a:link {
  color: #eee;
  text-decoration: none; /* no underline */
}
.menu_header a:visited {
  color: #eee;
  text-decoration: none; /* no underline */
}
.menu_header a:hover {
  color: #ffb !important;
}
.menu_header a:active {
  color: #ffb !important;
  text-decoration: none; /* no underline */
}

.center {
  text-align: center;
}

.boxDisplay {
  background-color: #cccccc;
  margin-right: 150px;
  margin-left: 180px;
}

.pscTable td  {
  background-color: #dfdfdf;
}

.pscTable .tdLabel {
  text-align: right;
  vertical-align: top;
  max-width: 200px;
  width: 150px !important;
}

.pscTable .tdData {
  text-align: left;
  vertical-align: top;
}

/* Textarea styling */
.pscTable textarea {
  width: 100%; /* Full width of the cell */
  min-height: 40px; /* Minimum height */
  resize: vertical; /* Allow vertical resizing only */
  border: 1px solid #ccc; /* Subtle border */
  padding: 8px; /* Internal padding */
  box-sizing: border-box; /* Include padding in width */
  font-family: Arial, sans-serif; /* Match table font */
  text-align: left; /* Right-align text */
  vertical-align: top; /* Top-align text */
}

/* Text styling */
.pscTable input[type="text"] {
  width: 100%; /* Full width of the cell */
  min-width: 100px; /* Minimum width */
  border: 1px solid #ccc; /* Subtle border */
  padding: 8px; /* Internal padding */
  box-sizing: border-box; /* Include padding in width */
  font-family: Arial, sans-serif; /* Match table font */
  text-align: left; /* Right-align text */
  vertical-align: top; /* Top-align text */
}
