#odds-and-predictions-container h3 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 30px;
}

.h4-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #00a153;
    line-height: 1;
    padding: 0;
    margin-bottom: 20px;
    font-size: 28px;
}

.h4-container h4 {
    color: #fff;
    margin: 10px 0;
}

.iframe-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.widget-container {
    margin: 0;
    padding: 0;
    outline: 0;
    vertical-align: baseline;
    background-color: transparent;
    border: 0;
    overflow: auto;
}

.custom-screen-alert {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ff0000;
    padding: 40px;
    border: 6px solid #007bff; 
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); 
    z-index: 1000;
}
  
.screen-alert-content {
    text-align: center;
}

.screen-alert-content p {
    margin: 0 0 50px 0; 
    font-size: 40px;
}

#ok-button {
    padding: 30px 60px; 
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#ok-button:hover {
    background-color: #fff000;
    color: #000;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.fullscreen-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 15px;
    margin-bottom: 10px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.fullscreen-btn:hover {
    background-color: #aaa;
    color: #000;
}

.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;
}

.scrollable-widget h5 {
    color: #000 !important;
}

.scrollable-widget {
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.scrollable-widget > div {
    display: inline-block;
    min-width: 500px;
}

.widget-search {
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.widget-container mark {
    background-color: #fffbcc;
    color: #b84f00;
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 4px;
    box-shadow: 0 0 1px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .widget-container {
        padding: 0;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 1000px) {
    .iframe-container {
        width: 100%;
    }
}