main {
    font-family: Arial, sans-serif;
    margin: auto;
    max-width: 1353px;
    padding: 0 16px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.containers {
    max-width: 1353px;
    margin: 20px auto 0px auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: #fff;
}

.header {
    padding: 16px 20px;
    font-size: 18px;
    font-weight: bold;
    border: 1px solid rgba(228, 231, 236, 1);
    border-radius: 12px 12px 0px 0px;
    border-bottom: none;
    background: #f9f9f9;
}

table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid rgba(228, 231, 236, 1);
}

th {
    font-size: 12px;
    font-weight: 500;
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    color: rgba(71, 84, 103, 1);
    background: #f9f9f9;
}

td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    max-width: 301px;
    color: rgba(71, 84, 103, 1);
}

.logo {
    width: 90px;
    height: auto;
    max-width: 100%;
}

.rating {
    display: flex;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    line-height: 20px;
    color: rgba(2, 122, 72, 1);
    background-color: rgba(236, 253, 243, 1);
    font-size: 14px;
}

.premium {
    background-color: rgba(239, 242, 244, 1);
    padding: 5px 16px 5px 14px;
    border-radius: 16px;
    font-size: 14px;
}

.button {
    background-color: #2168BA;
    color: white;
    padding: 12px 5px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s;
    display: inline-block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.button:hover {
    background-color: #0056b3;
}

/* Mobile-specific styles */
@media screen and (max-width: 768px) {
    main {
        padding: 0 12px;
    }

    .containers {
        margin: 16px auto;
        border-radius: 12px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

    .header {
        font-size: 16px;
        text-align: center;
    }

    table {
        display: block;
        overflow-x: auto;
    }

    th,
    td {
        font-size: 11px;
        padding: 10px 12px;
        max-width: 100%;
    }

    .logo {
        width: 70px;
    }

    .rating {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }

    .premium {
        padding: 4px 12px;
        font-size: 12px;
    }

    .button {
        padding: 10px;
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .header {
        font-size: 14px;
    }

    th,
    td {
        font-size: 10px;
        padding: 8px 10px;
    }

    .logo {
        width: 60px;
    }

    .rating {
        width: 36px;
        height: 36px;
        font-size: 11px;
    }
}