/* General styling for the order details page */
.order-success-page .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Box for order details */
.order-details-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Order title */
.order-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

/* Order info section */
.order-info p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

.order-total {
    font-weight: bold;
    color: #e67e22;
}

/* Items section */
.order-items-title {
    font-size: 20px;
    margin-top: 20px;
    color: #333;
}

.order-items-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 10px;
}

.order-item {
    font-size: 16px;
    color: #555;
    margin-bottom: 5px;
}

/* Billing address */
.billing-address {
    margin-top: 20px;
}

/* Error message styling */
.error-message {
    background: #e74c3c;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 20px;
}
