/* the styles for the HTML elements */
/* Reset some default styles */
/* Reset some default styles */
body, h1, h2, h5, p {
    margin: 0; 
    padding: 0;
    }

html {
    background-color: rgb(192, 192, 192);
    transform: scale(0.90); /* Zoom out to 90% */
    transform-origin: 0 0; /* Scale from the top-left corner */
    width: 111.1%; /* Compensate for the 90% scaling */
    height: 111.1%; /* Compensate for the 90% scaling */
  
}

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 10px auto;
    padding: 0 2em;
    background-color: white;
    border: 1px solid black;
    overflow-x: auto;
    transform: scale(1.0); /* Zoom out to 90% */
    transform-origin: 0 0; /* Scale from the top-left corner */
}

input[type=submit] {
    display: block;
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    height: 50px; /* Adjusted height */
    width: 200px;
    padding: 7px 15px; 
    background: #000080; /* Original blue */
    cursor: pointer;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    font-weight: bold;
    color: #ffffff;
    transition: background-color 0.2s;
    border: none; /* Remove default button border */
}

input[type="submit"]:hover {
    background-color: #2868c7; /* Lighter blue on hover */
    transition: background-color 0.2s;
}

.container {
    max-width: 1200px;
    text-align: center;
    margin: 0 auto;
    padding: 20px;
    display: flex;
}

.login {
    background-color: #ffffff;
    margin: auto;
}

.login h1 {
    margin: 0;
    text-align: center;
}

.login form {
    display: grid;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px;
}

.login form label2 {
    text-align: center;
    width: 250px;
    padding: 0 15px;
    background-color: #000080;
    color: #ffffff;
}

.login form input[type="password"],
.login form input[type="text"] {
    width: 250px;
    height: 30px;
    border: 1px solid #dee0e4;
    margin-bottom: 15px;
    padding: 0 15px;
}

header {
    border-bottom: 2px solid blue;
    padding: .5em 0;
    text-align: center;
}

header .logo {
    width: auto;
    height: 63px;
    margin: 2px;
    padding-left: 5px;
    padding-right: 67px;
    float: left;
    display: inline-block;
}

header h1 {
    color: black;
}

main {}

aside {
    float: left;
    width: 150px;
    height: 625px;
}

section {
    float: left;
    width: 500px;
}

footer {
    clear: both;
    border-top: 2px solid blue;
}

footer p {
    text-align: right;
    font-size: 80%;
}

h1 {
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
}

h2 {
    font-size: 120%;
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
}

h1, h2 {
    color: #000080; 
}

p {
    margin: .5em 0;
}

ul {
    list-style-type: none;
    margin: 0;
    padding-left: 0;
}

li {
    padding-bottom: .5em;
}

a {
    color: rgb(41, 64, 124);
    font-weight: bold;
}

a:hover {
    color: rgb(208, 133, 4);
}

br {
    clear: left;
}

table {
    border-collapse: collapse;
    width: 60%;
    margin: auto;
}

onepage {
    border-collapse: collapse;
    width: 60%;
    text-align: center;
    align-items: stretch;
    margin: 0;
    padding: 0;
}

th, td {
    padding: 0.25rem;
    text-align: left;
    border: 1px solid #ccc;
}

tbody tr:nth-child(odd) {
    background: #eee;
}

form {}

/* New styles for button containers with text */

.button-container {
    text-align: center;
    margin-top: 20px;
}

.button-with-text {
    display: flex;
    align-items: center;
    justify-content: center; /* Center content horizontally */
    margin-bottom: 20px;
}

.button-with-text form {
    margin: 0;
}

.button-with-text span {
    flex: 1; /* Take up remaining space */
    max-width: 40%; /* Limit width to 40% of the container */
    margin-left: 20px; /* Adjust this value to change the space between button and text */
    text-align: left;
    word-wrap: break-word; /* Allow text to wrap to a new line */
}

.wrapper {
            display: grid;
            grid-template-columns: auto 1fr; /* Two columns: auto width for button, rest for label */
            align-items: start; /* Aligns items at the top */
            gap: 10px; /* Space between button and label */
        }
label {
            /* No specific styles needed here */
            word-wrap: break-word; /* Allows label text to wrap */
        }




