.DebugContainer {
    background-color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 20px;
    font-family: monospace;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
    padding: 20px;
    max-width: 90%;
    box-shadow: 2px 2px 3px rgba(10, 10, 10, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.DebugContainer span {
    display: block;
    text-align: center;
}

.DebugContainer input.text {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    font-size: 16px;
    margin-top: 2.5px;
    margin-bottom: 2.5px;
    padding: 1.5px;
    transition: background 0.3s;
    border-radius: 5px;
    font-weight: bold;
}

.DebugContainer input.text:hover {
    background-color: rgba(205, 205, 205, 0.2);
    border-bottom: 1px solid rgba(205, 205, 205, 0.2);

}

.DebugContainer input[type="submit"] {
    width: 100%;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 5px;
    font-weight: bold;
}

.DebugContainer input[type="submit"]:hover {
    background-color: #0056b3;
}

.DMMMenu button {
    margin: 2.5px;
    width: 20px;
    height: 20px;
    font-size: 10px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.DMMMenu button.DebugBtnA {
    background: rgba(0, 255, 0, 0.8);
    box-shadow: 2px 2px 3px rgba(0, 255, 0, 0.1)
}

.DMMMenu button.DebugBtnA:hover {
    background: rgba(0, 185, 0, 0.8);
}

.DMMMenu button.DebugBtnR {
    background: rgba(255, 174, 0, 0.8);
    box-shadow: 2px 2px 3px rgba(255, 174, 0, 0.1);
}

.DMMMenu button.DebugBtnR:hover {
    background: rgba(185, 104, 0, 0.8);
}

.DMMMenu button.DebugBtnX {
    background-color: rgba(255, 0, 0, 0.8);
    box-shadow: 2px 2px 3px rgba(255, 0, 0, 0.1);
}

.DMMMenu button.DebugBtnX:hover {
    background-color: rgba(150, 0, 0, 0.8);
}

.DMMMenu {
    background-color: rgba(255, 0, 0, 0.2);
    position: absolute;
    top: 2.5px;
    right: 2.5px;
    display: flex;
    align-items: center;
    font-weight: bold;
    padding: 5px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: white;
    border-radius: 5px;
    z-index: 999;
}