.fullscreen-button {
    width: 40px;
    height: 40px;
    background: rgba(100, 100, 100, 0.3);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    right: 12px;
    bottom: 12px;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-button svg {
    width: 100%;
    height: 100%;
    fill: white;
    stroke: none;
}

.fullscreen-button:hover {
    background: rgba(120, 120, 120, 0.5);
}

.fullscreen-button:hover svg {
    fill: #aaa;
}

/* Exit fullscreen icon */
.exit-fullscreen-button {
    width: 40px;
    height: 40px;
    background: rgba(100, 100, 100, 0.3);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    right: 12px;
    bottom: 12px;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exit-fullscreen-button svg {
    width: 100%;
    height: 100%;
    fill: white;
    stroke: none;
}

.exit-fullscreen-button:hover {
    background: rgba(120, 120, 120, 0.5);
}

.exit-fullscreen-button:hover svg {
    fill: #aaa;
}

/* Posicionamiento de los botones de fullscreen */
#super-fullscreen-button {
    right: 62px;
}

#super-fullscreen-with-code-button {
    right: 112px;
}
