body {
    margin: 0;
    padding: 0;
    display: grid;
}

br {
    user-select: none;
}

#adminOverlay {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 2;
    padding: 20px;
}

#overlayBackground {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

#contextMenu {
    position: absolute;
    background-color: white; 
    color: black; 
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 3;
    padding: 10px;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: auto;
}

#contextMenu button {
    width: 100px;
    padding: 10px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: deepskyblue;
    color: white; 
    transition: background-color 0.3s;
    text-align: center;
}

#contextMenu button:hover {
    background-color: dodgerblue;
}

#contextMenu a {
    text-decoration: none;
    color: white;
}

.dark-mode #contextMenu {
    background-color: black;
    color: white;
}

.dark-mode #contextMenu button {
    background-color: deepskyblue;
    color: white;
}

.dark-mode #contextMenu button:hover {
    background-color: dodgerblue;
}

.dark-mode #contextMenu a {
    color: white;
}