.user_orders .order {
    background-color: #fff;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 5px;
}

.user_orders .order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.user_orders .order-header h2 {
    margin: 0;
    font-size: 18px;
}

.user_orders .order-content,
.user_orders .order-shipping {
    display: none;
    margin-top: 10px;
}

.user_orders .toggle-content {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}

.user_orders .order-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.user_orders .order-item:last-child {
    border-bottom: none;
}

.user_orders .order-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
}

.user_orders .order-item-info {
    flex: 1;
    margin-right: 10px;
}

.user_orders .order-item-price,
.user_orders .order-item-quantity,
.user_orders .order-item-total {
    text-align: right;
    width: 80px;
}

.toggle-content-items,
.toggle-content-shipping,
.toggle-content-order {
    cursor: pointer;
    display: flex;
}