/* Fullscreen button styles */
.fullscreen-container {
    text-align: right;
    margin-top: 2px;
    margin-bottom: 2px;
    position: relative;
    height: 24px; /* Fixed height to minimize space */
}

.fullscreen-btn {
    # background-color: rgba(80, 80, 80, 0.8);
    background-color: rgba(231, 76, 60, 0.5); /* Red with slight transparency */

    color: #fff;
    border: none;
    padding: 3px 8px;
    font-family: Arial, sans-serif;
    font-size: 12px;
    cursor: pointer;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
    transition: background-color 0.2s ease;
}

.fullscreen-btn:hover {
    background-color: rgba(231, 76, 60, 0.85); /* Red with slight transparency */
}

/* Fullscreen icon */
.fullscreen-btn svg {
    margin-right: 5px;
    width: 12px;
    height: 12px;
}