.tbl-table-content {
    display: block;
    margin: 0 0 20px; /* removed the margin here to remove spacing at the top and bottom */
    overflow: hidden;
}

.tbl-table-right {
    display: flex;
    flex-direction: column;
}

.tbl-table-row {
    display: flex;
    border-bottom: 1px solid #e8e8e8;
    background:#f3f3f3;
    border-radius: 5px;
}

.tbl-logo-details {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
}

.tbl-image-wrap img {
    max-width: 100%;
    max-height: 100px;
}

.tbl-table-cell {
    flex: 0 0 auto;
    padding: 10px;
    text-align: center;
    box-sizing: border-box; /* Include padding and border in an element's width and height */
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.tbl-table-cell.tbl-signup-bonus h1 {
    color:#000;
    margin: 3px 0;
    font-size: 18px; /* Adjust as per your design */
    line-height: 1.5;
}

.tbl-table-cell.tbl-signup-bonus h3 {
    margin: 0;
    font-size: 15px; /* Adjust as per your design */
    line-height: 1.5;
}

.tbl-table-cell.tbl-signup-bonus h5 {
    margin: 0;
    font-size: 12px; /* Adjust as per your design */
    line-height: 1.5;
}

.tbl-table-cell.tbl-logo-details {
    width: 18%; /* Adjust as per your design */
}

.tbl-table-cell.tbl-signup-bonus {
    width: 30%; /* Adjust as per your design */
}

.tbl-table-cell.tbl-rating {
    display: flex;
    flex-direction: column; /* Stack child elements vertically */
    justify-content: center; /* Center child elements vertically */
    width: 16%; /* Adjust as per your design */
}

.tbl-table-cell.tbl-promo-code-container {
    width: 18%; /* Adjust as per your design */
}

.tbl-table-cell.tbl-join-button {
    width: 18%; /* Adjust as per your design */
}


/* Other Styles remain the same */


.tbl-our-score {
    margin-bottom: 5px;
}

.tbl-ratecount {
    font-size: 34px;
    font-weight:bold;
    color: #000;
    margin: 0;
}

.tbl-promo-code-container {
    display: flex;
    flex-direction: column; /* Stack child elements vertically */
    justify-content: center; /* Center child elements vertically */
}

.tbl-promo-code-title {
    font-size: 11px;
    font-weight: bold;
}

.tbl-code-copy-container {
    text-align: center; 
    width:100%;   
}

.tbl-code {
    background: #fff;
    border-radius: 5px;
    border: 2px dashed #d1d3d9;
    padding: 8px 15px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

.tbl-code:hover {
    background: #f8f8f8;
}

.tbl-hidden {
    color: transparent;
    text-shadow: 0 0 6px #000;
}

.tbl-hidden {
    clear: left;
    font-size: 12px;
    line-height: 1.5;
    overflow: hidden;
}

a.tbl-read-review {
    font-size: 12px;
    outline: 0;
    color: #2f4c6c;
}

.tbl-promo-code {
    font-size: 20px;
    padding: 5px;
    text-align: center;
    background-color: #fff;
    margin-bottom: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.tbl-code-blurred {
    filter: blur(5px); /* Adjust blur as needed */
    cursor: pointer; /* Indicates the element is clickable */
    user-select: none; /* Prevents user from selecting the text */
}

.tbl-join-button {    
    display: inline-grid;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center; /* This will also horizontally center the button */
}

.tbl-join-button button {
    background-color: #f9cf00;
    border: none;
    border-radius: 3px;
    color: #000;
    padding: 8px 10px;
    letter-spacing: 0.5px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.2);
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.5);
    font-weight: 700;
    position: relative;
    cursor: pointer;
}

.tbl-join-button button a:hover {
    background-color: #f9c100;
}

.tbl-terms p {
    padding: 2px 0 5px;
    color: #808080;
    font-size: 10px;
    line-height: 10px;
    margin: 4px 0 2px 0;
    font-family: 'Roboto', sans-serif;
}

@media (max-width: 767px) {
    .tbl-table-row {
        flex-wrap: wrap;
    }

    .tbl-table-cell.tbl-logo-details,
    .tbl-table-cell.tbl-signup-bonus {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .tbl-table-cell.tbl-rating,
    .tbl-table-cell.tbl-promo-code-container {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .tbl-table-cell {
        box-sizing: border-box;
        border-bottom-left-radius: 0px;
        padding: 5px 10px;
    }

    .tbl-join-button {    
        flex-wrap: wrap;
        align-items: center;
        justify-content: center; /* This will also horizontally center the button */
    }

    .tbl-table-cell.tbl-join-button button {
        display: block;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
    
    .tbl-table-cell.tbl-join-button {
        display: block;
        width: 100%;
    }
}

@media (max-width: 481px) {
    .tbl-table-cell.tbl-join-button {
        flex-wrap: wrap;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .tbl-table-cell.tbl-join-button button {
        display: block;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        margin:0 0 3px 0;
    }
    .tbl-table-cell {
        width: 100%;
        padding: 5px 10px;
        border-top-left-radius: 5px;
        border-top-right-radius: 0px;
        border-bottom-left-radius: 0px;
    }
}
