.ce-orders-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow-x: auto;  /* ✅ Allow scroll when needed */
}

/* Table Styling */
.ce-orders-container table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 15px;
    min-width: 1200px; /* ✅ force table to grow if columns need space */
}

.ce-orders-container th,
.ce-orders-container td {
    padding: 10px 8px;
    text-align: center;
    border: 1px solid #ddd;
    white-space: nowrap;  /* ✅ prevent wrapping everywhere */
}

.ce-orders-container th {
    background-color: #f5f5f5;
    font-weight: 600;
}

/* On mobile: extra control (optional) */
@media (max-width: 768px) {
    .ce-orders-container {
        padding: 10px;
    }

    .ce-orders-container table {
        min-width: 1000px; /* optional for small screens */
    }
}
