body {
    background: #F5F5F5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Ubuntu', sans-serif;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    position: relative;
}

#background-logo {
    position: fixed;
    top: 6%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 900px;
    height: auto;
    opacity: 0.07;
    transition: transform 0.1s ease-out;
    z-index: -1;
}

section {
    margin-top: 3%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 62vw;
}

.main-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 0.5rem 0;
}


.maps, .tabulations {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 0.7rem;
    display: flex;
    flex-direction: column;
    max-width: 44%;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.maps:hover, .tabulations:hover {
    transform: translateY(-7px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}


img {
    width: 100%;
    border-radius: 4px;
}

ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    text-align: center;
}


li {
    display: inline-block;
    width: 94%;
    margin: 1%;
    font-size: 1.4em;
    font-weight: 300;
}


.name {
    margin-left: 0.5rem;
}

a {
    display: block;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0.5rem;
    text-decoration: none;
    color: black;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

a:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Centered button container */
.button-container {
    position: absolute;
    bottom: -140px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* Space between buttons */
}

.button-container button {
    width: 200px; /* Set a uniform width */
    padding: 10px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.logout-btn {
    background: #F5F5F5;
    color: black;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    margin-bottom: 9%;

}

.logout-btn:hover {
    background: #E5E1DA;
}

.cancel-btn {
    background: #dc3545;
    color: white;
    margin-bottom: 5%;
}

.cancel-btn:hover {
    background: #c82333;
}