#live-score-container h3 {
    font-size: 48px;
    font-weight: 900;
}

#widget-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

#fullscreen-btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-btn {
    background-color: #008000;
    color: #fff;
    border: none;
    padding: 5px 15px;
    margin-bottom: 10px;
    font-size: 24px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color .3s ease;
}

.fullscreen-btn:hover {
    background-color: #004000;
}

.close-fullscreen-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10000;
    background-color: #FF4136;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    display: none;
}

.close-fullscreen-btn:hover {
    background-color:#A53030;
}

@media screen and (min-width: 500px) {
    #ls-widget {
        width: 80%;
    }
}