/* non-block-theme-customer-details.css */

/* Container styling */
.extendons-thank-you-customer-details {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: #ffffff;
    
}

/* Customer details heading */
.extendons-thank-you-order-detail-heading {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333333;
    font-weight: 200;
    font-size: 30px;
    
}

/* Customer Addresses Table */
.extendons-thank-you-customer-addresses {
    width: 100%;
    table-layout: fixed; /* Fixes column width */
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.extendons-thank-you-customer-addresses thead th {
    background-color: #0073aa;
    color: #ffffff;
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
    border-collapse: collapse;

}

.extendons-thank-you-customer-addresses tbody td {
    padding: 0.75rem;
    border: 1px solid #ddd;
    color: #333333;
}

/* Zebra striping for rows */
.extendons-thank-you-customer-addresses tbody tr:nth-child(odd) {
    background-color: #f1f1f1;
}
.extendons-thank-you-customer-addresses tbody tr:nth-child(even) {
    background-color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .extendons-thank-you-order-detail-heading {
        font-size: 1.25rem;
    }
    .extendons-thank-you-customer-addresses thead th,
    .extendons-thank-you-customer-addresses tbody td {
        padding: 0.5rem;
    }
}
.extendons-thank-you-customer-addresses td {
    word-break: break-word; /* Forces words to break */
    vertical-align: top; /* Aligns text to the top */
}

.extendons-thank-you-customer-addresses th,
.extendons-thank-you-customer-addresses td {
    padding: 10px; /* Adds spacing inside the cells */
    border: 1px solid #ddd; /* Adds a visible border */
}

    