/* General styling for the entire site */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Container for the main content */
.container {
    width: 80%;
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Styling for headings */
h1, h2, h3 {
    color: #4CAF50;
    margin-bottom: 20px;
}

/* Paragraph and text styling */
p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Form styling */
form {
    margin-bottom: 20px;
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

input[type="text"], 
input[type="number"], 
select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Button styling */
.button, button, a.button {
	display: block;
    background-color: #4CAF50;
    padding: 10px 20px;          /* Adds internal space for a better click target */
    margin: 10px 5px;            /* Adds space between buttons */
    text-decoration: none;       /* Removes underline */
    background-color: #007bff;   /* Example color */
    color: white;                /* Button text color */
    border-radius: 5px;          /* Rounded corners */
    font-size: 16px;             /* Readable text size */
    border: none;
    cursor: pointer;
/*    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;*/
    transition: background-color 0.3s;

}


.container a.button {
    display: block;  /* Forces each button onto a new line */
    width: fit-content;


*/


.button:hover, button:hover {
    background-color: #45a049;
}

/* Table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

th {
    background-color: #4CAF50;
    color: white;
}

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

a:hover {
    text-decoration: underline;
}

/* Error and success messages */
.error {
    color: red;
    font-weight: bold;
    margin-bottom: 20px;
}

.success {
    color: green;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Footer styling */

.sysres {
	color: gray;
	font-size: 60%: ;
	
}

footer {
    margin-top: 30px;
    padding: 20px;
    background-color: #4CAF50;
    color: white;
    text-align: center;
}
