html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}


.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.logout {
    border-radius: 10px;
    background-color: #064F70;
}

.status {
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 10px;
}

    .status.open {
        background-color: #0089B5;
    }

.status.closed {
    background-color: darkgrey;
}

.container {
    display: flex;
    flex-direction: column; /* Stack divs vertically */
    align-items: center; /* Center content horizontally */
    justify-content: center; /* Center content vertically */
    height: 100vh; /* Full viewport height */
    margin: 0;
}

/* Style each line in the foreach loop */
.line {
    background-color: lightblue;
    margin: 5px;
    padding: 10px;
    border: 1px solid #000;
    width: 50%; /* Adjust to your needs */
    text-align: center; /* Center text inside each div */
}

