/* margins and paddings for html and body */
html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* Body styling */
body {
    font-family: Arial, sans-serif;
    background: #f2f2f2;
    flex-grow: 1; /* body fills the screen height */
}

/* Footer styling */
footer {
    margin-top: auto; /* footer to the bottom of the page */
}

/* Container and login box styles */
.login-box, .container {
    background: #fff;
    padding: 20px;
    max-width: 500px;
    margin: 40px auto;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Form input and select field styles */
input, select {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    box-sizing: border-box;
}

/* Submit button styling */
input[type="submit"] {
    background: #2980b9;
    color: white;
    border: none;
    cursor: pointer;
}

input[type="submit"]:hover {
    background: #3498db;
}

/* Link styling */
a {
    color: #2980b9;
    text-decoration: none;
}

/* Table styling */
table {
    width: 100%;
    border-collapse: collapse;
}

table th, table td {
    padding: 8px;
    border: 1px solid #ddd;
    text-align: center;
}

/* Marquee styling */
.marquee {
    margin-bottom: 0;
    padding-bottom: 0;
}
