body {
    background-color: #def1f6;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #ffffff;
    padding: 20px;
    max-width: 150px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #ffffff;
    padding: 30px;
    margin: 20px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.fulltext {
    background-color: #ffffff;
    font-size: 1.5em;
    padding: 30px;
    margin: 80px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

h1 {
    color: #0091b7;
    font-size: 3em;
    margin-bottom: 20px;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px;
    padding: 10px;
}

.admin-form{
    display: flex;
    flex-direction: row;
    padding: 10px;
}

.input-field {
    display: block;
    width: 100%;
    max-width: 400px;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.form-border{
    border-style: groove;
    border-width: 5px;
    border-color: #0091b7;
    border-radius: 5px;
}

.submit-button {
    background: linear-gradient(135deg, #0091b7, #00c6ff);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    margin: 10px 0;
    border-radius: 25px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 145, 183, 0.3);
}

.submit-button:hover {
    background: linear-gradient(135deg, #00c6ff, #0091b7);
    box-shadow: 0 6px 20px rgba(0, 145, 183, 0.5);
}

.small-button {
    padding: 10px 20px;
    font-size: 0.9em;
}

.back-button {
    background: linear-gradient(135deg, #0091b7, #00c6ff);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    margin: 20px 0;
    border-radius: 25px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 145, 183, 0.3);
}

.back-button:hover {
    background: linear-gradient(135deg, #00c6ff, #0091b7);
    box-shadow: 0 6px 20px rgba(0, 145, 183, 0.5);
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 18px;
    text-align: left;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.styled-table thead tr {
    background-color: #0091b7;
    color: #ffffff;
    text-align: left;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #0091b7;
}

.styled-table tbody tr.active-row {
    font-weight: bold;
    color: #0091b7;
}

div#footer {
    width: 100%;
    bottom: 0;
    left: 0;
}

footer {
    background-color: #ffffff;
    color: #333;
    padding: 0;
    text-align: center;
    border-top: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-section {
    margin: 10px;
    max-width: 300px;
}

.footer-section h3 {
    margin-bottom: 10px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.5;
}

.footer-section a {
    color: #0091b7;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}
