/* General Styles */

/* Table Styles */
table {
    width: 80%;
    border-collapse: collapse;
    overflow-x: auto; /* Horizontal scrolling on small screens */
}

th, td {
    padding: 1px 10px 1px 1px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #9ea1a2;
    color: #fff;
    text-transform: uppercase;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}


/* Pagination Styles */
#paginationControls {
    margin-top: 20px;
    text-align: center;
}


#paginationControls button {
    background-color: #dde5e8;
    color: #000;
    border: none;
    padding: 10px 15px; /* Adjusted padding */
    cursor: pointer;
    border-radius: 5px;
    margin: 0 5px;
    transition: background-color 0.3s;
}

#paginationControls button:hover {
    background-color: #0056b3;
}

/* Shopify Buy Button Styles */
.shopify-buy-button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.shopify-buy__btn-wrapper{
 margin-top: 0 !important;
}

.shopify-buy-button button {
    background-color: #28a745;
    color: #fff;
    border: none;
    padding: 1px 1px; /* Adjusted padding */
    cursor: pointer;
    border-radius: 5px;
    text-align: left;
    transition: background-color 0.3s;
}

.shopify-buy-button button:hover {
    background-color: #218838;
    font-size: 12px;
    padding: 5px 20px;
}



/* Responsive Styles */
@media screen and (max-width: 768px) {
    .container {
        padding: 10px;
    }

    table {
        font-size: 14px;
    }
}

