body {
    background-color: #1a1a1a !important;
    background-image: url('roxilogo.jpg');
    background-repeat: repeat;
    background-size: 160px;
    color: #ffffff !important;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    /* Centers the main-container horizontally */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-box {
    background-color: #0d0404 !important;
    color: #ff0000 !important;
    padding: 40px 10px;
    margin: 0 auto;
    text-align: center;
    font-size: 3.5rem;
    width: 100%; /* Spans the full width or matches max-width */
    max-width: 800px;
}

.pricelist-title {
    background-color: #000000 !important;
    color: #ff0000 !important;
    display: table;
    margin: 20px auto;
    padding: 10px 40px;
    text-decoration: underline;
    font-size: 2.5rem;
}

.email-banner {
    background-color: #000000 !important;
    color: #ff0000 !important;
    padding: 15px;
    margin: 10px auto;
    text-align: center;
    font-size: 1.2rem;
    width: 100%;
    max-width: 600px;
}

.main-container {
    background-color: rgba(0, 0, 0, 0.9);
    width: 95%; /* Responsive width */
    max-width: 1000px; /* Limits how wide the text goes */
    margin: 20px auto;
    padding: 30px;
    box-sizing: border-box;
}

.price-grid {
    display: flex;
    justify-content: space-between;
    gap: 4%; /* Adds space between the two columns */
}

.column {
    flex: 1; /* Makes columns equal width */
    min-width: 300px;
}

.side-header {
    color: #ff0000;
    border-bottom: 2px solid #ff0000;
    margin-top: 30px;
    text-align: left;
}

p {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    font-weight: bold;
}

.special-section, 
.shipping-info, 
.aging-products, 
.footer {
    margin-top: 30px;
    text-align: center;
    width: 100%;
}

.wait-warning {
    color: #ffaa00;
    justify-content: center !important; /* Centers the warning text */
}

/* Specific fix for p tags in centered sections */
.special-section p, 
.shipping-info p, 
.aging-products p, 
.footer p {
    justify-content: center;
    gap: 15px;
}