.debug-spoller {
    position: fixed;
    top: 0;
    left: calc(25% - 15px); /* Центрирование по горизонтали */
    width: 75%;
    height: auto;
    background-color: #333; /* Темная тема для спойлера */
    color: white;
    z-index: 9999; /* Чтобы спойлер был поверх всего остального контента */
}

.debug-spoller button {
    width: 100%;
    padding: 15px;
    background-color: #444; /* Темная тема для кнопки */
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.debug-spoller button:hover {
    background-color: #555; /* Изменение цвета при наведении */
}

.debug-content {
    display: none;
    padding: 15px;
    border-top: 2px solid white;
}