body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    overflow: hidden;
    margin: 0;
    background-color: #f0f0f0;
}

.admin-container {
    position: relative;
    height: 100vh;
    width: 80%;
}

.admin-div {
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 20px;
    overflow: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 80%;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
}

th {
    background-color: #f2f2f2;
}

button {
    padding: 5px 10px;
    margin: 0 5px;
    cursor: pointer;
}

.login-container {
    position: relative;
    height: 100vh;
    width: 25%;
}

.login-div {
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 20px;
    overflow: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 25%;
}


#loginForm {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#loginForm input {
    margin-bottom: 15px;
    padding: 10px;
    width: 100%;
}

#loginForm button {
    padding: 10px 20px;
    cursor: pointer;
}