/* APRG Best Article Styles */
.aprg-product-image {
    display: block;
    margin: 30px auto;
    width: 100%;
    max-width: 100%;
    /* Allow larger images */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* More premium soft shadow */
}

.aprg-button-wrapper {
    text-align: center;
    margin-bottom: 25px;
}

/* Ensure the button matches the specific request strictly */
.aprg-amazon-button {
    display: inline-block;
    background-color: #33c458;
    color: #ffffff !important;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: background-color 0.3s;
    text-align: center;
    margin: 0 auto;
}

.aprg-amazon-button:hover {
    background-color: #28a745;
    text-decoration: none;
    color: #fff !important;
}

.aprg-best-article ul,
.aprg-best-article ol {
    margin-left: 20px;
}

/* Pros & Cons Table Styling */
table.aprg-pros-cons-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    border: 1px solid #e0e0e0;
    table-layout: fixed;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

table.aprg-pros-cons-table th,
table.aprg-pros-cons-table td {
    padding: 20px;
    vertical-align: top;
    border: 1px solid #e0e0e0;
}

table.aprg-pros-cons-table th {
    text-align: center;
    font-weight: 700;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 50%;
}

table.aprg-pros-cons-table th:first-child {
    background-color: #e8f5e9;
    color: #2e7d32;
    border-bottom: 3px solid #66bb6a;
}

table.aprg-pros-cons-table th:last-child {
    background-color: #ffebee;
    color: #c62828;
    border-bottom: 3px solid #ef5350;
}

table.aprg-pros-cons-table td ul {
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
}

table.aprg-pros-cons-table td li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 600px) {

    table.aprg-pros-cons-table,
    table.aprg-pros-cons-table tbody,
    table.aprg-pros-cons-table tr,
    table.aprg-pros-cons-table th,
    table.aprg-pros-cons-table td {
        display: block;
        width: 100%;
    }

    table.aprg-pros-cons-table tr {
        margin-bottom: 20px;
    }
}