/* Desktop Styles */
@media screen and (min-width: 768px) {
    /* Safe fallback in case the api is down */
    .safe {
        visibility: hidden;
    }

    .unsafe {
        visibility: hidden;
    }
    /* end of fallback */

    .super-simple-toplist__offer-row.mobile {
        display: none;
    }

    .super-simple-toplist__offers-wrapper {
        max-width: 1200px; /* Adjust this to match the live page container width */
        margin: 0 auto; /* Center the preview */
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        font-family: Arial, sans-serif;
    }
    .super-simple-toplist__offers {
        margin-bottom: 10px;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    .super-simple-toplist__offer-card {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        overflow: hidden;
        align-items: center;
    }
    .super-simple-toplist__offer-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap; /* Ensure no wrapping */
        height: 115px;
    }
    .super-simple-toplist__offer-number,
    .super-simple-toplist__offer-logo-wrapper,
    .super-simple-toplist__offer-body,
    .super-simple-toplist__offer-payments,
    .super-simple-toplist__offer-bonus,
    .super-simple-toplist__offer-cta {
        padding: 10px;
    }
    .super-simple-toplist__offer-number {
        font-size: 18px;
        font-weight: bold;
        flex: 0 0 5%; /* Fixed width */
    }
    .super-simple-toplist__offer-logo-wrapper {
        display: flex; /* Make the logo container a flex container */
        align-items: center; /* Center items vertically */
        justify-content: left; /* Center items horizontally, optional */
        flex: 0 0 20%; /* Fixed width */
    }
    .super-simple-toplist__offer-logo-wrapper img {
        max-width: 100%;
        height: auto;
    }
    .super-simple-toplist__offer-body {
        flex: 0 0 5%;
        text-align: center
     }
    .super-simple-toplist__offer-title p {
        font-size: 1.0em;
        margin: 0;
        font-weight: bold;
        justify-content: center;
    }
    .super-simple-toplist__offer-facts {
        margin-top: 5px;
    }
    .super-simple-toplist__offer-rating {
        font-size: 1em;
        color: #f39c12;
    }
    .super-simple-toplist__offer-rating-star::before {
        content: '★';
        margin-right: 5px;
    }
    .super-simple-toplist__offer-payments {
        flex: 0 0 5%; /* Fixed width */
        display: flex;
        justify-content: center;
    }
    .super-simple-toplist__offer-payments img {
        max-width: 24px;
        margin: 0 2px;
    }
    .super-simple-toplist__offer-bonus {
        text-align: left;
        flex: 0 0 20%; /* Fixed width */
    }
    .super-simple-toplist__offer-bonus span {
        font-size: 0.8em;
        color: #888;
    }
    .super-simple-toplist__offer-bonus strong {
        justify-content: center;
        display: block;
        font-size: 1.0em;
        margin-top: 0px;
        font-weight: bold;
    }
    .super-simple-toplist__offer-bonus-btn {
        margin-top: 10px;
        padding: 5px 10px;
        background-color: #ccc;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }
    .super-simple-toplist__offer-cta {
        flex: 0 0 15%; /* Fixed width */
        display: flex;
        justify-content: center;
    }
    .super-simple-toplist__offer-cta-btn {
        display: inline-block;
        padding: 10px 20px;
        border-radius: 20px;
        text-decoration: none;
        font-weight: bold;
    }
    .super-simple-toplist__offer-cta-btn:hover {
        opacity: 0.9;
    }
}