#logout-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

h2 {
    font-size: 1.5em !important;
    margin-bottom: 10px;
}

.logout-popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    width: 300px;
}

#confirm-logout, #cancel-logout {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#confirm-logout {
    background-color: #ff0000;
    color: #fff;
}

#cancel-logout {
    background-color: #ccc;
    color: #000;
}