.filtered-orders {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Adds spacing between orders */
    margin: 0 auto; /* Centers the orders container */
}

.order-container {
    display: flex;
    align-items: flex-start;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    max-width: 800px;
    width: 100%;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
}

.order-image {
    margin-right: 20px;
    text-align: center;
}

.order-image img {
    border-radius: 5px;
    width: 100px; /* Thumbnail size */
    height: auto;
}

.order-image h3 {
    margin-top: 10px;
    font-size: 1em;
    font-weight: bold;
}

.order-details {
    flex: 1; /* Ensures it stretches to fill space */
}

.order-details p {
    margin: 5px 0; /* Adds spacing between lines */
}
.order-info {
    margin-left: 5px; /* Moves the entire block 5px from the left edge */
}

.order-info h3 {
    margin: 12px 0; /* Default spacing between each element */
}

.order-info h3:nth-child(2),
.order-info h3:nth-child(3) {
    margin-left: 30px; /* Indent the Order Date and Expiration Date */
}